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.6 KiB

1 year ago
1 year ago
1 year ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CustomerOnlineV2.Common.Models.ReceiverModel
  7. {
  8. public class ReceiverInformationModel : CommonResponse
  9. {
  10. public string? ReceiverId { get; set; }
  11. public string? CustomerId { get; set; }
  12. public string? MembershipId { get; set; }
  13. public string? firstName { get; set; }
  14. public string? middleName { get; set; }
  15. public string? lastName1 { get; set; }
  16. public string? lastName2 { get; set; }
  17. public string? Country { get; set; }
  18. public string? Address { get; set; }
  19. public string? State { get; set; }
  20. public string? zipCode { get; set; }
  21. public string? Email { get; set; }
  22. public string? homePhone { get; set; }
  23. public string? workPhone { get; set; }
  24. public string? Mobile { get; set; }
  25. public string? Relationship { get; set; }
  26. public string? District { get; set; }
  27. public string? purposeOfRemit { get; set; }
  28. public string? receiverType { get; set; }
  29. public string? idType { get; set; }
  30. public string? idNumber { get; set; }
  31. public string? createdDate { get; set; }
  32. public string? idExpairyDate { get; set; }
  33. public string? placeOfIssue { get; set; }
  34. public string? paymentMode { get; set; }
  35. public string? bankLocation { get; set; }
  36. public string? payOutPartner { get; set; }
  37. public string? bankName { get; set; }
  38. public string? receiverAccountNumber { get; set; }
  39. public string? Remarks { get; set; }
  40. }
  41. }