ReslutWebMessage.cs 768 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace AirWheel.Cycling.Entity.ResponseMod
  7. {
  8. public class ReslutWebMessage
  9. {
  10. /// <summary>
  11. ///
  12. /// </summary>
  13. public int status
  14. { get; set; }
  15. public WebMessage info
  16. {
  17. get;set;
  18. }
  19. public object data
  20. {
  21. get;set;
  22. }
  23. }
  24. public class WebMessage
  25. {
  26. public int comment
  27. {
  28. get;set;
  29. }
  30. public int digg
  31. {
  32. get;set;
  33. }
  34. public int notice
  35. {
  36. get;set;
  37. }
  38. public int at
  39. {
  40. get;set;
  41. }
  42. }
  43. }