WXReceiveRedPacketjson.cs 528 B

123456789101112131415161718192021222324
  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 WXReceiveRedPacketJson
  10. {
  11. [JsonProperty("external")]
  12. public string External { get; set; }
  13. [JsonProperty("key")]
  14. public string Key { get; set; }
  15. [JsonProperty("message")]
  16. public string Message { get; set; }
  17. [JsonProperty("status")]
  18. public int Status { get; set; }
  19. }
  20. }