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 Rates { get; set; } } }