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.
 
 

24 lines
783 B

using System.Collections.Generic;
namespace Transfast.Model.ExRate
{
public class TFExRateResponse
{
public string PayerName { get; set; }
public string ModeOfPaymentName { get; set; }
public decimal StartRate { get; set; }
public decimal EndRate { get; set; }
public string PayerId { get; set; }
public string PaymentModeId { get; set; }
public string ReceiveCountryIsoCode { get; set; }
public string ReceiveCountryName { get; set; }
public string RateStartDate { get; set; }
public string RateExpiryDate { get; set; }
public string ReceiveCurrencyIsoCode { get; set; }
}
public class _ExRateResponse
{
public List<TFExRateResponse> Rates { get; set; }
}
}