aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim.Framework/Types/Login.cs
blob: ed77a464c2ef87d1df5664643d3e00f32c3376a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 Login()
        {

        }
    }
}