InsuInfo.cs 694 B

1234567891011121314151617181920212223242526272829
  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 PTMedicalInsurance.Entity.Insu
  8. {
  9. class InsuInfo
  10. {
  11. public decimal balc { get; set; }
  12. [JsonProperty("insutype")]
  13. public string insutype { get; set; }
  14. [JsonProperty("psn_type")]
  15. public string psn_type { get; set; }
  16. [JsonProperty("psn_insu_stas")]
  17. public string psn_insu_stas { get; set; }
  18. [JsonProperty("psn_insu_date")]
  19. public string psnInsuDate { get; set; }
  20. [JsonProperty("paus_insu_date")]
  21. public string pausInsuDate { get; set; }
  22. }
  23. }