Messages.cs 369 B

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