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.

39 lines
1.5 KiB

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