ResponseFeedList.cs 774 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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 ResponseFeedList
  9. {
  10. public int status
  11. {
  12. get;set;
  13. }
  14. public string msg
  15. {
  16. get;set;
  17. }
  18. public int firstId
  19. {
  20. get;set;
  21. }
  22. public string html
  23. {
  24. get;set;
  25. }
  26. public string pageHtml
  27. {
  28. get;set;
  29. }
  30. public int count
  31. {
  32. get;set;
  33. }
  34. public int? maxId
  35. {
  36. get;set;
  37. }
  38. public int? loadId
  39. {
  40. get;set;
  41. }
  42. }
  43. }