diff options
Diffstat (limited to 'MediaBrowser.Model/Notifications/NotificationLevel.cs')
| -rw-r--r-- | MediaBrowser.Model/Notifications/NotificationLevel.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Model/Notifications/NotificationLevel.cs b/MediaBrowser.Model/Notifications/NotificationLevel.cs index 24946e071..c7e68b163 100644 --- a/MediaBrowser.Model/Notifications/NotificationLevel.cs +++ b/MediaBrowser.Model/Notifications/NotificationLevel.cs @@ -3,8 +3,8 @@ namespace MediaBrowser.Model.Notifications { public enum NotificationLevel { - Normal, - Warning, - Error + Normal = 1, + Warning = 2, + Error = 3 } } |
