AgreeDuty.cs 770 B

123456789101112131415161718192021222324252627282930
  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 AgreeDuty
  10. {
  11. [JsonProperty("title")]
  12. public string Title { get; set; }
  13. [JsonProperty("service_protocol_wording")]
  14. public string ServiceProtocolWording { get; set; }
  15. [JsonProperty("service_protocol_url")]
  16. public string ServiceProtocolUrl { get; set; }
  17. [JsonProperty("button_wording")]
  18. public string ButtonWording { get; set; }
  19. [JsonProperty("delay_expired_time")]
  20. public int DelayExpiredTime { get; set; }
  21. [JsonProperty("agreed_flag")]
  22. public int AgreedFlag { get; set; }
  23. }
  24. }