jellyfin/MediaBrowser.Model/Notifications/NotificationType.cs
2014-07-02 14:34:08 -04:00

23 lines
564 B
C#

namespace MediaBrowser.Model.Notifications
{
public enum NotificationType
{
ApplicationUpdateAvailable,
ApplicationUpdateInstalled,
AudioPlayback,
GamePlayback,
VideoPlayback,
AudioPlaybackStopped,
GamePlaybackStopped,
VideoPlaybackStopped,
InstallationFailed,
PluginError,
PluginInstalled,
PluginUpdateInstalled,
PluginUninstalled,
NewLibraryContent,
NewLibraryContentMultiple,
ServerRestartRequired,
TaskFailed
}
}