aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs')
-rw-r--r--OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs26
1 files changed, 13 insertions, 13 deletions
diff --git a/OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs b/OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs
index 1d70c73..2b3d826 100644
--- a/OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs
+++ b/OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs
@@ -7,23 +7,23 @@ namespace OpenGrid.Framework.Data
7{ 7{
8 public class InventoryItemBase 8 public class InventoryItemBase
9 { 9 {
10 LLUUID inventoryID; 10 public LLUUID inventoryID;
11 LLUUID assetID; 11 public LLUUID assetID;
12 int type; 12 public int type;
13 LLUUID parentFolderID; 13 public LLUUID parentFolderID;
14 LLUUID avatarID; 14 public LLUUID avatarID;
15 string inventoryName; 15 public string inventoryName;
16 string inventoryDescription; 16 public string inventoryDescription;
17 uint inventoryNextPermissions; 17 public uint inventoryNextPermissions;
18 uint inventoryCurrentPermissions; 18 public uint inventoryCurrentPermissions;
19 } 19 }
20 20
21 public class InventoryFolderBase 21 public class InventoryFolderBase
22 { 22 {
23 string name; 23 public string name;
24 LLUUID agentID; 24 public LLUUID agentID;
25 LLUUID parentID; 25 public LLUUID parentID;
26 LLUUID folderID; 26 public LLUUID folderID;
27 } 27 }
28 28
29 public interface IInventoryData 29 public interface IInventoryData