QrCodeJson.cs 782 B

12345678910111213141516171819202122232425262728293031323334
  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 QrCodeJson
  10. {
  11. [JsonProperty("device_type")]
  12. public string DeviceType { get; set; }
  13. [JsonProperty("expired_time")]
  14. public int ExpiredTime { get; set; }
  15. [JsonProperty("head_url")]
  16. public string HeadUrl { get; set; }
  17. [JsonProperty("nick_name")]
  18. public string NickName { get; set; }
  19. [JsonProperty("password")]
  20. public string Password { get; set; }
  21. [JsonProperty("status")]
  22. public int Status { get; set; }
  23. [JsonProperty("user_name")]
  24. public string UserName { get; set; }
  25. }
  26. }