From a0305888bcc7cd2e97f14c5e7893d151a5b9de7b Mon Sep 17 00:00:00 2001 From: Adam Frisby Date: Thu, 31 May 2007 14:05:19 +0000 Subject: * Yet more inventory shelling * Very initial MySQL work done * Refactored some of the MySQL code - functions which are passed a reader are no longer getX() but now readX(). --- .../OpenGrid.Framework.Data/InventoryData.cs | 26 +++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs') 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 { public class InventoryItemBase { - LLUUID inventoryID; - LLUUID assetID; - int type; - LLUUID parentFolderID; - LLUUID avatarID; - string inventoryName; - string inventoryDescription; - uint inventoryNextPermissions; - uint inventoryCurrentPermissions; + public LLUUID inventoryID; + public LLUUID assetID; + public int type; + public LLUUID parentFolderID; + public LLUUID avatarID; + public string inventoryName; + public string inventoryDescription; + public uint inventoryNextPermissions; + public uint inventoryCurrentPermissions; } public class InventoryFolderBase { - string name; - LLUUID agentID; - LLUUID parentID; - LLUUID folderID; + public string name; + public LLUUID agentID; + public LLUUID parentID; + public LLUUID folderID; } public interface IInventoryData -- cgit v1.1