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.

23 lines
783 B

  1. using System.Collections.Generic;
  2. namespace Transfast.Model.ExRate
  3. {
  4. public class TFExRateResponse
  5. {
  6. public string PayerName { get; set; }
  7. public string ModeOfPaymentName { get; set; }
  8. public decimal StartRate { get; set; }
  9. public decimal EndRate { get; set; }
  10. public string PayerId { get; set; }
  11. public string PaymentModeId { get; set; }
  12. public string ReceiveCountryIsoCode { get; set; }
  13. public string ReceiveCountryName { get; set; }
  14. public string RateStartDate { get; set; }
  15. public string RateExpiryDate { get; set; }
  16. public string ReceiveCurrencyIsoCode { get; set; }
  17. }
  18. public class _ExRateResponse
  19. {
  20. public List<TFExRateResponse> Rates { get; set; }
  21. }
  22. }