mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-29 00:00:17 -05:00
remove unused notification type (cherry picked from commit bffebce90975aed1abdf46f50e08d1e9c694240d) 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
|
|
}
|
|
}
|