WXttsmsg.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 WxTtsMsg
  10. {
  11. [JsonProperty("content")]
  12. public string Content { get; set; }
  13. [JsonProperty("continue")]
  14. public int Continue { get; set; }
  15. [JsonProperty("description")]
  16. public string Description { get; set; }
  17. [JsonProperty("from_user")]
  18. public string FromUser { get; set; }
  19. [JsonProperty("msg_id")]
  20. public string MsgId { get; set; }
  21. [JsonProperty("msg_source")]
  22. public string MsgSource { get; set; }
  23. [JsonProperty("msg_type")]
  24. public int MsgType { get; set; }
  25. [JsonProperty("status")]
  26. public int Status { get; set; }
  27. [JsonProperty("sub_type")]
  28. public int SubType { get; set; }
  29. [JsonProperty("timestamp")]
  30. public int Timestamp { get; set; }
  31. [JsonProperty("to_user")]
  32. public string ToUser { get; set; }
  33. [JsonProperty("uin")]
  34. public Int64 Uin { get; set; }
  35. }
  36. }