EnterGroupJson.cs 603 B

123456789101112131415161718192021222324252627
  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 EnterGroupJson
  10. {
  11. [JsonProperty("full_url")]
  12. public string FullUrl { get; set; }
  13. [JsonProperty("info")]
  14. public string Info { get; set; }
  15. [JsonProperty("message")]
  16. public string Message { get; set; }
  17. [JsonProperty("share_url")]
  18. public string ShareUrl { get; set; }
  19. [JsonProperty("status")]
  20. public int Status { get; set; }
  21. }
  22. }