diff --git a/OpenSim/Framework/InventoryCollection.cs b/OpenSim/Framework/InventoryCollection.cs index 98e8bb66dc..c8d8716093 100644 --- a/OpenSim/Framework/InventoryCollection.cs +++ b/OpenSim/Framework/InventoryCollection.cs @@ -34,20 +34,47 @@ namespace OpenSim.Framework { public class InventoryCollection { - public List Folders; - public List AllItems; - public LLUUID UserID; + public List _folders; + public List _allItems; + public LLUUID _userID; + + public List Folders { + get { + return _folders; + } + set { + _folders = value; + } + } + + public List AllItems { + get { + return _allItems; + } + set { + _allItems = value; + } + } + + public LLUUID UserID { + get { + return _userID; + } + set { + _userID = value; + } + } public InventoryCollection() { - Folders = new List(); - AllItems = new List(); + _folders = new List(); + _allItems = new List(); } public InventoryCollection(List folders, List allItems) { - Folders = folders; - AllItems = allItems; + _folders = folders; + _allItems = allItems; } } }