aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Caches/CachedUserInfo.cs
blob: 08a7848d5171ffa1dfbb418d02214b67b6817077 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Text;
using OpenSim.Framework.Data;
using libsecondlife;

namespace OpenSim.Region.Caches
{
    public class CachedUserInfo
    {
        public UserProfileData UserProfile;
        //public Dictionary<LLUUID, InventoryFolder> Folders = new Dictionary<LLUUID, InventoryFolder>();
        public InventoryFolder RootFolder;

        public CachedUserInfo()
        {

        }
    }
}