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.

15 lines
424 B

  1. using System.ComponentModel.DataAnnotations;
  2. namespace Transfast.Model.Bank
  3. {
  4. public class TFBankRequest
  5. {
  6. [Required]
  7. public string CountryIsoCode { get; set; }
  8. public string BankName { get; set; }
  9. public string RoutingNumber { get; set; }
  10. public string Swiftcode { get; set; }
  11. public int StartIndex { get; set; }
  12. public int PageSize { get; set; }
  13. }
  14. }