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.

45 lines
1.1 KiB

1 year ago
1 year ago
1 year ago
10 months 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. public class Gateway
  31. {
  32. public string Code { get; set; }
  33. public bool IsRedirect { get; set; }
  34. public string RedirectURL { get; set; }
  35. public string CheckSuccessURL { get; set; }
  36. public string CheckFailURL { get; set; }
  37. }
  38. }