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.

81 lines
3.2 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Common.Model
  7. {
  8. public class ExRateResponse
  9. {
  10. public string ErrorCode { get; set; }
  11. public string ErrCode { get; set; }
  12. public string ErrorMsg { get; set; }
  13. public string mirsErrCode { get; set; }
  14. public string mirsPayoutAgentRate { get; set; }
  15. public string mirsRateCreatedDate { get; set; }
  16. public string mirsPayoutCurrency { get; set; }
  17. public string Msg { get; set; }
  18. public string Id { get; set; }
  19. public string scCharge { get; set; }
  20. public string exRateDisplay { get; set; }
  21. public string exRate { get; set; }
  22. public string place { get; set; }
  23. public string pCurr { get; set; }
  24. public string currDecimal { get; set; }
  25. public string pAmt { get; set; }
  26. public string sAmt { get; set; }
  27. public string disc { get; set; }
  28. public string bankTransafer { get; set; }
  29. public string bankPayout { get; set; }
  30. public string bankRate { get; set; }
  31. public string bankFee { get; set; }
  32. public string bankSave { get; set; }
  33. public string bankName { get; set; }
  34. public string collAmt { get; set; }
  35. public string collCurr { get; set; }
  36. public string exRateOffer { get; set; }
  37. public string scOffer { get; set; }
  38. public string scAction { get; set; }
  39. public string scValue { get; set; }
  40. public string scDiscount { get; set; }
  41. public string amountLimitPerTran { get; set; }
  42. public string amountLimitPerDay { get; set; }
  43. public string customerTotalSentAmt { get; set; }
  44. public string minAmountLimitPerTran { get; set; }
  45. public string maxAmountLimitPerTran { get; set; }
  46. public string PerTxnMinimumAmt { get; set; }
  47. public string tpExRate { get; set; }
  48. public string tpPCurr { get; set; }
  49. public string schemeAppliedMsg { get; set; }
  50. public string schemeId { get; set; }
  51. public string PayoutPartner { get; set; }
  52. public string EXRATEID { get; set; }
  53. public string DateToday { get; set; }
  54. public string AgentRefId { get; set; }
  55. public string ComplianceErrorCode { get; set; }
  56. public string ComplianceId { get; set; }
  57. public string ComplianceMsg { get; set; }
  58. public string ComplianceVType { get; set; }
  59. public string ForexSessionId { get; set; }
  60. }
  61. public class TFExRateResponse
  62. {
  63. public string PayerName { get; set; }
  64. public string ModeOfPaymentName { get; set; }
  65. public decimal StartRate { get; set; }
  66. public decimal EndRate { get; set; }
  67. public string PayerId { get; set; }
  68. public string PaymentModeId { get; set; }
  69. public string ReceiveCountryIsoCode { get; set; }
  70. public string ReceiveCountryName { get; set; }
  71. public string RateStartDate { get; set; }
  72. public string RateExpiryDate { get; set; }
  73. public string ReceiveCurrencyIsoCode { get; set; }
  74. }
  75. public class _ExRateResponse
  76. {
  77. public List<TFExRateResponse> Rates { get; set; }
  78. }
  79. }