NotificationLevel.cs 152 B

123456789
  1. namespace MediaBrowser.Model.Notifications
  2. {
  3. public enum NotificationLevel
  4. {
  5. Normal = 0,
  6. Warning = 1,
  7. Error = 2
  8. }
  9. }