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.

117 lines
4.1 KiB

11 months ago
12 months ago
11 months ago
12 months ago
10 months ago
12 months ago
11 months ago
12 months ago
11 months ago
11 months ago
12 months ago
11 months ago
12 months ago
10 months ago
12 months ago
  1. using System.ComponentModel;
  2. namespace CustomerOnlineV2.Common.Models.HomeModel
  3. {
  4. public class HomeModel
  5. {
  6. }
  7. public class ReceiverModel
  8. {
  9. public string? Id { get; set; }
  10. public string? Name { get; set; }
  11. public string? Country { get; set; }
  12. public string? Mobile { get; set; }
  13. public string? TransactionType { get; set; }
  14. public string? tranStatus { get; set; }
  15. public string? nprAmt { get; set; }
  16. public string? tranId { get; set; }
  17. public string? tranDate { get; set; }
  18. public string? address { get; set; }
  19. public string? collAmt { get; set; }
  20. public string? serviceCharge { get; set; }
  21. public string? customerPremium { get; set; }
  22. public string? sentAmt { get; set; }
  23. public string? exRate { get; set; }
  24. public string? payoutAmt { get; set; }
  25. public string? pAgent { get; set; }
  26. }
  27. public class CustomerReceiverModel : CommonResponse
  28. {
  29. public List<ReceiverModel>? ReceiverModel { get; set; }
  30. }
  31. public class CustomerTransactionList : CommonResponse
  32. {
  33. public List<CustomerTransaction>? CustomerTransaction { get; set; }
  34. }
  35. public class CustomerTransaction
  36. {
  37. public string? Id { get; set; }
  38. public string? TranId { get; set; }
  39. public string? ControlNo { get; set; }
  40. public string? CollAmt { get; set; }
  41. public string? PayoutAmt { get; set; }
  42. public string? PCurr { get; set; }
  43. public string? CollCurr { get; set; }
  44. public string? PayStatus { get; set; }
  45. public string? PayoutMode { get; set; }
  46. public string? SendDate { get; set; }
  47. public string? PaidDate { get; set; }
  48. public string? DisplayActions { get; set; }
  49. public string? TransactionMonth { get; set; }
  50. public string? TransactionDay { get; set; }
  51. public string? TransactionYear { get; set; }
  52. public string? PaymentMethod { get; set; }
  53. public string? PBankName { get; set; }
  54. public string? BankBranch { get; set; }
  55. public string? PromotionDiscount { get; set; }
  56. public string? Amount { get; set; }
  57. public string? Status { get; set; }
  58. public string? PCurrency { get; set; }
  59. public string? cAmt { get; set; }
  60. public string? serviceCharge { get; set; }
  61. public string? acAmt { get; set; }
  62. public string? pCountry { get; set;}
  63. public string? receiverName { get; set;}
  64. public string? Rate { get; set; }
  65. public string? recAccountNum { get; set;}
  66. public string? FromDate { get; set; }
  67. public string? ToDate { get; set; }
  68. }
  69. public class CommonDropDownModel
  70. {
  71. public string Flag { get; set; }
  72. public string Value { get; set; }
  73. public string country { get; set; }
  74. }
  75. public class CommonDropDownList
  76. {
  77. public List<DropDownResponse> DropDownResponse { get; set; }
  78. }
  79. public class DropDownResponse
  80. {
  81. public string Text { get; set; }
  82. public string Id { get; set; }
  83. }
  84. public class NotificationModel
  85. {
  86. public string? Id { get; set; }
  87. public string? Title { get; set; }
  88. public string? Body { get; set; }
  89. public string? Date { get; set; }
  90. public string? IsRead { get; set; }
  91. public string? Type { get; set; }
  92. public string? SentId { get; set; }
  93. public string? Category { get; set; }
  94. public string? url { get; set; }
  95. public string? IsClickable { get; set; }
  96. public string? notificationCount { get; set;}
  97. public string? RewardPoints { get; set;}
  98. public string? MembershipId { get; set; }
  99. public string? CustomerName { get; set; }
  100. public string? RewardAmount { get; set; }
  101. public string? ReferralCode { get; set; }
  102. }
  103. public class CustomerNotificationModel : CommonResponse
  104. {
  105. public List<NotificationModel>? NotificationModel { get; set; }
  106. public string? RewardAmount { get; set; }
  107. public string? SelfieDoc { get; set; }
  108. }
  109. }