| 12345678910111213141516171819202122 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace IPADDemo.Model
- {
- public class ReadPackJson
- {
- [JsonProperty("external")]
- public string External { get; set; }
- [JsonProperty("message")]
- public string Message { get; set; }
- [JsonProperty("status")]
- public int Status { get; set; }
- }
- }
|