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.
 
 

16 lines
424 B

using System.ComponentModel.DataAnnotations;
namespace Transfast.Model.Bank
{
public class TFBankRequest
{
[Required]
public string CountryIsoCode { get; set; }
public string BankName { get; set; }
public string RoutingNumber { get; set; }
public string Swiftcode { get; set; }
public int StartIndex { get; set; }
public int PageSize { get; set; }
}
}