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.
 
 

68 lines
1.9 KiB

using Common.Models.RequestResponse;
using System.ComponentModel.DataAnnotations;
namespace Common.Models.ExchangeRate
{
public class ExchangeRate : CommonRequest
{
public string RequestedBy { get; set; }
public string CustomerId { get; set; }
public string SCountry { get; set; }
public string SAgent { get; set; }
public string SSuperAgent { get; set; }
public string SBranch { get; set; }
[MaxLength(50)]
public string AgentRefId { get; set; }
[MaxLength(3)]
public string CollCurrency { get; set; }
public string PAgentId { get; set; }
public string PAgentName { get; set; }
public string SchemeId { get; set; }
public string PayoutPartner { get; set; }
public string PCountry { get; set; }
public string PCountryName { get; set; }
public string pCountryCode { get; set; }
[MaxLength(3)]
public string PCurrency { get; set; }
public string SCurrency { get; set; }
public string CAmount { get; set; }
public string PAmount { get; set; }
[MaxLength(50)]
public string ServiceType { get; set; }
[MaxLength(1)]
public string CalcBy { get; set; }
[MaxLength(20)]
public string PaymentType { get; set; }
[MaxLength(20)]
public string CouponCode { get; set; }
public bool IsManualSc { get; set; }
public string ManualSc { get; set; }
[MaxLength(50)]
public string CardOnline { get; set; }
public bool IsExRateCalcByPartner { get; set; }
public string tPExRate { get; set; }
public string ProcessFor { get; set; }
public string payerName { get; set; }
public string SCExcludedCountries { get; set; }
public string DiscountedFee { get; set; }
public string Introducer { get; set; }
}
}