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.
 
 

19 lines
625 B

using Common.Models.RequestResponse;
namespace Common.Models.Bank
{
public class BankRequest : CommonRequest
{
public string CountryCode { get; set; }
public string BankName { get; set; }
public string RoutingNumber { get; set; }
public string StateId { get; set; }
public string Swiftcode { get; set; }
public int StartIndex { get; set; }
public int PageSize { get; set; }
public bool IsBranch { get; set; }
public int CityId { get; set; }
public string PaymentMethod { get; set; }
public int QueryType { get; set; }
}
}