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