mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-16 16:18:06 +00:00
remove unused notification type
(cherry picked from commit bffebce909)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
24 lines
534 B
C#
24 lines
534 B
C#
#pragma warning disable CS1591
|
|
|
|
namespace MediaBrowser.Model.Notifications
|
|
{
|
|
public enum NotificationType
|
|
{
|
|
ApplicationUpdateAvailable,
|
|
ApplicationUpdateInstalled,
|
|
AudioPlayback,
|
|
VideoPlayback,
|
|
AudioPlaybackStopped,
|
|
VideoPlaybackStopped,
|
|
InstallationFailed,
|
|
PluginError,
|
|
PluginInstalled,
|
|
PluginUpdateInstalled,
|
|
PluginUninstalled,
|
|
NewLibraryContent,
|
|
ServerRestartRequired,
|
|
TaskFailed,
|
|
UserLockedOut
|
|
}
|
|
}
|