aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim.Framework/Login.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim.Framework/Login.cs')
-rw-r--r--OpenSim.Framework/Login.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/OpenSim.Framework/Login.cs b/OpenSim.Framework/Login.cs
new file mode 100644
index 0000000..8a67853
--- /dev/null
+++ b/OpenSim.Framework/Login.cs
@@ -0,0 +1,22 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using libsecondlife;
5
6namespace OpenSim.Framework.Interfaces
7{
8 public class Login
9 {
10 public string First = "Test";
11 public string Last = "User";
12 public LLUUID Agent;
13 public LLUUID Session;
14 public LLUUID SecureSession = LLUUID.Zero;
15 public LLUUID InventoryFolder;
16 public LLUUID BaseFolder;
17 public Login()
18 {
19
20 }
21 }
22}