2018-12-27 23:27:57 +00:00
|
|
|
namespace MediaBrowser.Model.Notifications
|
|
|
|
{
|
|
|
|
public enum NotificationType
|
|
|
|
{
|
|
|
|
ApplicationUpdateAvailable,
|
|
|
|
ApplicationUpdateInstalled,
|
|
|
|
AudioPlayback,
|
|
|
|
VideoPlayback,
|
|
|
|
AudioPlaybackStopped,
|
|
|
|
VideoPlaybackStopped,
|
|
|
|
InstallationFailed,
|
|
|
|
PluginError,
|
|
|
|
PluginInstalled,
|
|
|
|
PluginUpdateInstalled,
|
|
|
|
PluginUninstalled,
|
|
|
|
NewLibraryContent,
|
|
|
|
ServerRestartRequired,
|
|
|
|
TaskFailed,
|
|
|
|
CameraImageUploaded,
|
|
|
|
UserLockedOut
|
|
|
|
}
|
2019-01-13 19:31:15 +00:00
|
|
|
}
|