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.
 
 

18 lines
609 B

using Common.Models.RequestResponse;
namespace Common.Models.Payer
{
public class PayerRequest : CommonRequest
{
public string CountryIsoCode { get; set; }
public int CityId { get; set; }
public string TownId { get; set; }
public string PaymentModeId { get; set; }
public string ReceiveCurrencyIsoCode { get; set; }
public string BankId { get; set; }
public string SourceCurrencyIsoCode { get; set; }
public int StartIndex { get; set; }
public int PageSize { get; set; }
public string FeeProduct { get; set; }
}
}