28 lines
680 B
C#
28 lines
680 B
C#
// <copyright file="NotificationType.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#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
|
|
}
|
|
}
|