You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
1.1 KiB

1 year ago
  1. namespace Common.Model
  2. {
  3. public class Receivers : JsonRxResponse
  4. {
  5. public string mobileNumber { get; set; }
  6. public string district { get; set; }
  7. public string reasonId { get; set; }
  8. public string relation { get; set; }
  9. public string country { get; set; }
  10. public string dpUrl { get; set; }
  11. public string city { get; set; }
  12. public string relationId { get; set; }
  13. public string countryId { get; set; }
  14. public string state { get; set; }
  15. public string email { get; set; }
  16. public string middleName { get; set; }
  17. public string firstName { get; set; }
  18. public string recipientId { get; set; }
  19. public string reason { get; set; }
  20. public string districtId { get; set; }
  21. public string stateId { get; set; }
  22. public string lastName { get; set; }
  23. public string address { get; set; }
  24. public string userId { get; set; }
  25. public string countryCode { get; set; }
  26. public string idType { get; set; }
  27. public string idNumber { get; set; }
  28. public object Data { get; set; }
  29. }
  30. }