| 123456789101112131415161718192021222324252627 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace IPADDemo.Model
- {
- public class EnterGroupJson
- {
- [JsonProperty("full_url")]
- public string FullUrl { get; set; }
- [JsonProperty("info")]
- public string Info { get; set; }
- [JsonProperty("message")]
- public string Message { get; set; }
- [JsonProperty("share_url")]
- public string ShareUrl { get; set; }
- [JsonProperty("status")]
- public int Status { get; set; }
- }
- }
|