jellyfin-server/MediaBrowser.Model/Notifications/NotificationType.cs

23 lines
564 B
C#
Raw Normal View History

2014-07-02 18:34:08 +00:00
namespace MediaBrowser.Model.Notifications
{
public enum NotificationType
{
ApplicationUpdateAvailable,
ApplicationUpdateInstalled,
AudioPlayback,
GamePlayback,
2014-05-16 17:11:07 +00:00
VideoPlayback,
AudioPlaybackStopped,
GamePlaybackStopped,
VideoPlaybackStopped,
InstallationFailed,
PluginError,
PluginInstalled,
PluginUpdateInstalled,
PluginUninstalled,
NewLibraryContent,
NewLibraryContentMultiple,
ServerRestartRequired,
2014-05-16 17:11:07 +00:00
TaskFailed
}
}