RedPacketJson.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace IPADDemo.Model
  8. {
  9. public class RedPacketJson
  10. {
  11. [JsonProperty("retcode")]
  12. public int Retcode { get; set; }
  13. [JsonProperty("retmsg")]
  14. public string Retmsg { get; set; }
  15. [JsonProperty("sendId")]
  16. public string SendId { get; set; }
  17. [JsonProperty("wishing")]
  18. public string Wishing { get; set; }
  19. [JsonProperty("isSender")]
  20. public int IsSender { get; set; }
  21. [JsonProperty("receiveStatus")]
  22. public int ReceiveStatus { get; set; }
  23. [JsonProperty("hbStatus")]
  24. public int HbStatus { get; set; }
  25. [JsonProperty("statusMess")]
  26. public string StatusMess { get; set; }
  27. [JsonProperty("hbType")]
  28. public int HbType { get; set; }
  29. [JsonProperty("watermark")]
  30. public string Watermark { get; set; }
  31. [JsonProperty("agree_duty")]
  32. public AgreeDuty AgreeDuty { get; set; }
  33. [JsonProperty("sendUserName")]
  34. public string SendUserName { get; set; }
  35. [JsonProperty("timingIdentifier")]
  36. public string TimingIdentifier { get; set; }
  37. }
  38. }