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.

29 lines
709 B

  1. using System.ComponentModel.DataAnnotations;
  2. namespace Transfast.Model.Payers
  3. {
  4. public class TFPayersRequest
  5. {
  6. [Required]
  7. public string CountryIsoCode { get; set; }
  8. [Required]
  9. public int CityId { get; set; }
  10. public string TownId { get; set; }
  11. [Required]
  12. public string PaymentModeId { get; set; }
  13. [Required]
  14. public string ReceiveCurrencyIsoCode { get; set; }
  15. public string BankId { get; set; }
  16. [Required]
  17. public string SourceCurrencyIsoCode { get; set; }
  18. public int StartIndex { get; set; }
  19. public int PageSize { get; set; }
  20. public string FeeProduct { get; set; }
  21. }
  22. }