aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenSim.Framework/Types/Login.cs
blob: 71f9de3d26a4212674bb12a204febce540006398 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;
using System.Text;
using libsecondlife;

namespace OpenSim.Framework.Types
{
    public class Login
    {
        public string First = "Test";
        public string Last = "User";
        public LLUUID Agent;
        public LLUUID Session;
        public LLUUID SecureSession = LLUUID.Zero;
        public LLUUID InventoryFolder;
        public LLUUID BaseFolder;
        public uint CircuitCode;

        public Login()
        {

        }
    }
}