aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Notifications/NotificationType.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Notifications/NotificationType.cs')
-rw-r--r--MediaBrowser.Model/Notifications/NotificationType.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Notifications/NotificationType.cs b/MediaBrowser.Model/Notifications/NotificationType.cs
new file mode 100644
index 000000000..34e4d32b5
--- /dev/null
+++ b/MediaBrowser.Model/Notifications/NotificationType.cs
@@ -0,0 +1,23 @@
+namespace MediaBrowser.Model.Notifications
+{
+ public enum NotificationType
+ {
+ ApplicationUpdateAvailable,
+ ApplicationUpdateInstalled,
+ AudioPlayback,
+ GamePlayback,
+ VideoPlayback,
+ AudioPlaybackStopped,
+ GamePlaybackStopped,
+ VideoPlaybackStopped,
+ InstallationFailed,
+ PluginError,
+ PluginInstalled,
+ PluginUpdateInstalled,
+ PluginUninstalled,
+ NewLibraryContent,
+ NewLibraryContentMultiple,
+ ServerRestartRequired,
+ TaskFailed
+ }
+} \ No newline at end of file