NotificationLevel.cs 156 B

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