Contact.cs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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 Contact
  10. {
  11. [JsonProperty("big_head")]
  12. public string BigHead { get; set; }
  13. [JsonProperty("bit_mask")]
  14. public object BitMask { get; set; }
  15. [JsonProperty("bit_value")]
  16. public int BitValue { get; set; }
  17. [JsonProperty("chatroom_id")]
  18. public int ChatroomId { get; set; }
  19. [JsonProperty("chatroom_owner")]
  20. public string ChatroomOwner { get; set; }
  21. [JsonProperty("city")]
  22. public string City { get; set; }
  23. [JsonProperty("continue")]
  24. public int Continue { get; set; }
  25. [JsonProperty("country")]
  26. public string Country { get; set; }
  27. [JsonProperty("id")]
  28. public int Id { get; set; }
  29. [JsonProperty("img_flag")]
  30. public int ImgFlag { get; set; }
  31. [JsonProperty("intro")]
  32. public string Intro { get; set; }
  33. [JsonProperty("label")]
  34. public string Label { get; set; }
  35. [JsonProperty("level")]
  36. public int Level { get; set; }
  37. [JsonProperty("max_member_count")]
  38. public int MaxMemberCount { get; set; }
  39. [JsonProperty("member_count")]
  40. public int MemberCount { get; set; }
  41. [JsonProperty("msg_type")]
  42. public int MsgType { get; set; }
  43. [JsonProperty("nick_name")]
  44. public string NickName { get; set; }
  45. [JsonProperty("provincia")]
  46. public string Provincia { get; set; }
  47. [JsonProperty("py_initial")]
  48. public string PyInitial { get; set; }
  49. [JsonProperty("quan_pin")]
  50. public string QuanPin { get; set; }
  51. [JsonProperty("remark")]
  52. public string Remark { get; set; }
  53. [JsonProperty("remark_py_initial")]
  54. public string RemarkPyInitial { get; set; }
  55. [JsonProperty("remark_quan_pin")]
  56. public string RemarkQuanPin { get; set; }
  57. [JsonProperty("sex")]
  58. public int Sex { get; set; }
  59. [JsonProperty("signature")]
  60. public string Signature { get; set; }
  61. [JsonProperty("small_head")]
  62. public string SmallHead { get; set; }
  63. [JsonProperty("source")]
  64. public int Source { get; set; }
  65. [JsonProperty("status")]
  66. public int Status { get; set; }
  67. [JsonProperty("stranger")]
  68. public string Stranger { get; set; }
  69. [JsonProperty("uin")]
  70. public Int64 Uin { get; set; }
  71. [JsonProperty("user_name")]
  72. public string UserName { get; set; }
  73. [JsonProperty("member")]
  74. public string Member { get; set; }
  75. }
  76. }