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.

23 lines
792 B

  1. using Common.Models.RequestResponse;
  2. using System.ComponentModel.DataAnnotations;
  3. namespace Common.Models.Bank_Account
  4. {
  5. public class AccountValidationRequest : CommonRequest
  6. {
  7. public string IdType { get; set; }
  8. public string IdNumber { get; set; }
  9. public string CustomerFirstName { get; set; }
  10. public string CustomerLastName { get; set; }
  11. public string ReceiverFirstName { get; set; }
  12. public string ReceiverLastName { 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. }
  21. }