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.
 
 
 

26 lines
1018 B

namespace Common.Model
{
public class ExRateCalculateResponse
{
public string Id { get; set; }
public string scCharge { get; set; }
public string exRateDisplay { get; set; }
public string exRate { get; set; }
public string pCurr { get; set; }
public string pAmt { get; set; }
public string sAmt { get; set; }
public string disc { get; set; }
public string collAmt { get; set; }
public string collCurr { get; set; }
public string amountLimitPerDay { get; set; }
public string minAmountLimitPerTran { get; set; }
public string maxAmountLimitPerTran { get; set; }
public string schemeId { get; set; }
public string EXRATEID { get; set; }
public string couponType { get; set; }
public string discountType { get; set; }
public string discountPercent { get; set; }
public string discountValue { get; set; }
public string couponName { get; set; }
}
}