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.

25 lines
1018 B

1 year ago
  1. namespace Common.Model
  2. {
  3. public class ExRateCalculateResponse
  4. {
  5. public string Id { get; set; }
  6. public string scCharge { get; set; }
  7. public string exRateDisplay { get; set; }
  8. public string exRate { get; set; }
  9. public string pCurr { get; set; }
  10. public string pAmt { get; set; }
  11. public string sAmt { get; set; }
  12. public string disc { get; set; }
  13. public string collAmt { get; set; }
  14. public string collCurr { get; set; }
  15. public string amountLimitPerDay { get; set; }
  16. public string minAmountLimitPerTran { get; set; }
  17. public string maxAmountLimitPerTran { get; set; }
  18. public string schemeId { get; set; }
  19. public string EXRATEID { get; set; }
  20. public string couponType { get; set; }
  21. public string discountType { get; set; }
  22. public string discountPercent { get; set; }
  23. public string discountValue { get; set; }
  24. public string couponName { get; set; }
  25. }
  26. }