| 123456789101112131415161718192021222324252627282930 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace IPADDemo.Model
- {
- public class AgreeDuty
- {
- [JsonProperty("title")]
- public string Title { get; set; }
- [JsonProperty("service_protocol_wording")]
- public string ServiceProtocolWording { get; set; }
- [JsonProperty("service_protocol_url")]
- public string ServiceProtocolUrl { get; set; }
- [JsonProperty("button_wording")]
- public string ButtonWording { get; set; }
- [JsonProperty("delay_expired_time")]
- public int DelayExpiredTime { get; set; }
- [JsonProperty("agreed_flag")]
- public int AgreedFlag { get; set; }
- }
- }
|