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.

12 lines
166 B

  1. using System;
  2. namespace Swift.API.Common.Enum
  3. {
  4. [Flags]
  5. public enum NOTIFICATION_TYPE
  6. {
  7. SMS,
  8. EMAIL,
  9. PUSH_NOTIFICATION
  10. }
  11. }