TokenDataEntity.cs 484 B

123456789101112131415161718192021222324252627282930
  1. using System.Runtime.Serialization;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace WorkOrderControl
  7. {
  8. class TokenDataEntity
  9. {
  10. }
  11. class Msg_token
  12. {
  13. public int status { get; set; }
  14. public string msg { get; set; }
  15. public tdata data { get; set; }
  16. }
  17. class tdata
  18. {
  19. public string token { get; set; }
  20. public int expiretime { get; set; }
  21. }
  22. }