NotificationSeverity.cs 615 B

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. namespace Abp.Notifications
  3. {
  4. /// <summary>
  5. /// Notification severity.
  6. /// </summary>
  7. public enum NotificationSeverity : byte
  8. {
  9. /// <summary>
  10. /// Info.
  11. /// </summary>
  12. Info = 0,
  13. /// <summary>
  14. /// Success.
  15. /// </summary>
  16. Success = 1,
  17. /// <summary>
  18. /// Warn.
  19. /// </summary>
  20. Warn = 2,
  21. /// <summary>
  22. /// Error.
  23. /// </summary>
  24. Error = 3,
  25. /// <summary>
  26. /// Fatal.
  27. /// </summary>
  28. Fatal = 4
  29. }
  30. }