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.

58 lines
1.4 KiB

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
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.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Common.Model.Enum
  8. {
  9. [DefaultValue(NONE)]
  10. public enum NotifyTemplate
  11. {
  12. NONE,
  13. [Description("Email to customer txn is created for bank transfer")]
  14. BANK_TRANSFER_TXN_PENDING = 1,
  15. [Description("Email to customer after txn payment is cleared by IME London")]
  16. BANK_TRANSFER_TXN_CLEARED = 2,
  17. [Description("Email to customer after txn is accepted by Pay-out partner")]
  18. BANK_TXN_POST = 3,
  19. [Description("Email to customer after txn has been accepted by Pay-out partner (Cash Collection)")]
  20. CASH_TXN_POST = 4,
  21. [Description("Email to customer for reset password. JsonRX")]
  22. RESET_PASSWORD_EMAIL = 5,
  23. [Description("Email to customer after Basic Registration has been completed")]
  24. BASIC_REGISTRATION_EMAIL = 6,
  25. [Description("Email to customer after KYC completion")]
  26. KYC_VERIFICATION_EMAIL = 7,
  27. [Description("Email to customer for OTP")]
  28. OTP_EMAIL = 8,
  29. TRANSACTION_APPROVED = 10,
  30. TRANSACTION_MODIFY = 11,
  31. JP_POST_APPROVED = 12,
  32. TRANSACTION_CANCELLED = 13,
  33. TRANSACTION_PAID = 14,
  34. TRANSACTION_SUCCESS = 15,
  35. TF_NO_BALANCE = 16,
  36. NEW_REGISTER_WELCOME = 17,
  37. }
  38. }