Messages.cs 439 B

1234567891011121314151617181920212223242526272829
  1. using System.Collections.Generic;
  2. using ProtoBuf;
  3. namespace Robot.Protos
  4. {
  5. [ProtoContract]
  6. [System.Xml.Serialization.XmlType(TypeName = "SMSG_Auth_Challenge")]
  7. public class SMSG_Auth_Challenge
  8. {
  9. [ProtoMember(1, IsRequired = true)]
  10. public uint Num
  11. {
  12. get;
  13. set;
  14. }
  15. [ProtoMember(2, IsRequired = true)]
  16. public uint Seed
  17. {
  18. get;
  19. set;
  20. }
  21. [ProtoMember(3)]
  22. public List<uint> Random
  23. {
  24. get;
  25. set;
  26. }
  27. }
  28. }