NotificationLevel.cs 144 B

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