aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Notifications/NotificationLevel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Notifications/NotificationLevel.cs')
-rw-r--r--MediaBrowser.Model/Notifications/NotificationLevel.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Notifications/NotificationLevel.cs b/MediaBrowser.Model/Notifications/NotificationLevel.cs
new file mode 100644
index 000000000..a49ee2fe6
--- /dev/null
+++ b/MediaBrowser.Model/Notifications/NotificationLevel.cs
@@ -0,0 +1,10 @@
+
+namespace MediaBrowser.Model.Notifications
+{
+ public enum NotificationLevel
+ {
+ Normal = 0,
+ Warning = 1,
+ Error = 2
+ }
+}