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.

17 lines
609 B

  1. using Common.Models.RequestResponse;
  2. namespace Common.Models.Payer
  3. {
  4. public class PayerRequest : CommonRequest
  5. {
  6. public string CountryIsoCode { get; set; }
  7. public int CityId { get; set; }
  8. public string TownId { get; set; }
  9. public string PaymentModeId { get; set; }
  10. public string ReceiveCurrencyIsoCode { get; set; }
  11. public string BankId { get; set; }
  12. public string SourceCurrencyIsoCode { get; set; }
  13. public int StartIndex { get; set; }
  14. public int PageSize { get; set; }
  15. public string FeeProduct { get; set; }
  16. }
  17. }