jellyfin/MediaBrowser.Model/Notifications/NotificationType.cs

23 lines
564 B
C#
Raw Normal View History

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