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

1 year ago
  1. using System.ComponentModel.DataAnnotations;
  2. namespace Common.Model
  3. {
  4. public class AccountValidationRequest
  5. {
  6. public string IdType { get; set; }
  7. public string IdNumber { get; set; }
  8. public string CustomerFirstName { get; set; }
  9. public string CustomerLastName { get; set; }
  10. public string ReceiverFirstName { get; set; }
  11. public string ReceiverLastName { get; set; }
  12. public int ReceiverCountryId { get; set; }
  13. public string Country { get; set; }
  14. public string AccountType { get; set; }
  15. public string IssuerCode { get; set; }
  16. [Required]
  17. public string AccountNo { get; set; }
  18. public string Amount { get; set; }
  19. public string BankCode { get; set; }
  20. public string PayoutPartner { get; set; }
  21. public int DeliveryMethodId { get; set; }
  22. public string ProcessId { get; set; }
  23. public int BankId { get; set; }
  24. public string UserName { get; set; }
  25. public string ReceiverName { get; set; }
  26. }
  27. }