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.

37 lines
891 B

1 year ago
1 year ago
1 year ago
  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 RewardFee
  9. {
  10. public string ShowRewardPoint { get; set; }
  11. public string Point { get; set; }
  12. public string RewardMessage { get; set; }
  13. public string ShowValidationAlert { get; set; }
  14. public string ValidationMsg { get; set; }
  15. public PaymentOptions PaymentOptions { get; set; }
  16. }
  17. public class PaymentOptions
  18. {
  19. public string HeaderText { get; set; }
  20. public List<Option> Options { get; set; }
  21. }
  22. public class Option
  23. {
  24. public string Code { get; set; }
  25. public string Name { get; set; }
  26. public string Description { get; set; }
  27. public string Value { get; set; }
  28. public string Icon { get; set; }
  29. }
  30. }