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.

43 lines
1.8 KiB

  1. namespace Common.Models.TxnModel
  2. {
  3. public class TxnSender
  4. {
  5. public int CustomerId { get; set; }
  6. public string SFirstName { get; set; }
  7. public string SMiddleName { get; set; }
  8. public string SLastName1 { get; set; }
  9. public string SLastName2 { get; set; }
  10. public string SFullName { get; set; }
  11. public string SIdType { get; set; }
  12. public string SIdNo { get; set; }
  13. public string SIdIssueDate { get; set; }
  14. public string SIdExpiryDate { get; set; }
  15. public int SOccuptionId { get; set; }
  16. public string SOccuptionName { get; set; }
  17. public string SBirthDate { get; set; }
  18. public string SEmail { get; set; }
  19. public string SCityId { get; set; }
  20. public string SCity { get; set; }
  21. public string SState { get; set; }
  22. public string FormOfPaymentId { get; set; }
  23. public string SZipCode { get; set; }
  24. public string SNativeCountry { get; set; }
  25. public string SMobile { get; set; }
  26. public string STel { get; set; }
  27. public string SAddress { get; set; }
  28. public string SIpAddress { get; set; }
  29. public string SGender { get; set; }
  30. public string SCustStreet { get; set; }
  31. public string SCustLocation { get; set; }
  32. public string SourceOfFund { get; set; }
  33. public string Pwd { get; set; }
  34. public bool IsIndividual { get; set; }
  35. public int SCountryId { get; set; }
  36. public string SCountryName { get; set; }
  37. public int SBranchId { get; set; }
  38. public string SBranchName { get; set; }
  39. public int CustomerDepositedBank { get; set; }
  40. public string SPassport { get; set; }
  41. public string SBankName { get; set; }
  42. public string SAccountNo { get; set; }
  43. }
  44. }