23 lines
492 B
C#
23 lines
492 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
using libsecondlife;
|
||
|
|
||
|
namespace OpenSim.Framework.Interfaces
|
||
|
{
|
||
|
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()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|