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.

35 lines
1.4 KiB

  1. namespace Common.Models.TxnModel
  2. {
  3. public class TxnReceiver
  4. {
  5. public string ReceiverId { get; set; }
  6. public string RFullName { get; set; }
  7. public string RFirstName { get; set; }
  8. public string RMiddleName { get; set; }
  9. public string RLastName { get; set; }
  10. public string RIdType { get; set; }
  11. public string RIdNo { get; set; }
  12. public string RIdIssuedDate { get; set; }
  13. public string RIdValidDate { get; set; }
  14. public string RDob { get; set; }
  15. public string RTel { get; set; }
  16. public string RMobile { get; set; }
  17. public string RNativeCountry { get; set; }
  18. public string RCity { get; set; }
  19. public string RAdd1 { get; set; }
  20. public string REmail { get; set; }
  21. public string RAccountNo { get; set; }
  22. public string RGender { get; set; }
  23. public int RCountryId { get; set; }
  24. public string RCountry { get; set; }
  25. public int RelWithSenderId { get; set; }
  26. public string RelWithSenderName { get; set; }
  27. public string RStateId { get; set; }
  28. public string RStateName { get; set; }
  29. public string RCityCode { get; set; }
  30. public string RDistrictCode { get; set; }
  31. public string UnitaryBankAccountNo { get; set; }
  32. public string RLocation { get; set; }
  33. public string RLocationName { get; set; }
  34. public string RPassport { get; set; }
  35. }
  36. }