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; } } }