1
0

AgentCiruitData.cs 460 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using libsecondlife;
  5. namespace OpenSim.Framework.Interfaces
  6. {
  7. public class AgentCircuitData
  8. {
  9. public AgentCircuitData() { }
  10. public LLUUID AgentID;
  11. public LLUUID SessionID;
  12. public LLUUID SecureSessionID;
  13. public string firstname;
  14. public string lastname;
  15. public uint circuitcode;
  16. public bool child;
  17. }
  18. }