1
0

Login.cs 492 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using libsecondlife;
  5. namespace OpenSim.Framework.Interfaces
  6. {
  7. public class Login
  8. {
  9. public string First = "Test";
  10. public string Last = "User";
  11. public LLUUID Agent;
  12. public LLUUID Session;
  13. public LLUUID SecureSession = LLUUID.Zero;
  14. public LLUUID InventoryFolder;
  15. public LLUUID BaseFolder;
  16. public Login()
  17. {
  18. }
  19. }
  20. }