24 lines
581 B
C#
24 lines
581 B
C#
|
namespace MediaBrowser.Model.Notifications
|
||
|
{
|
||
|
public enum NotificationType
|
||
|
{
|
||
|
ApplicationUpdateAvailable,
|
||
|
ApplicationUpdateInstalled,
|
||
|
AudioPlayback,
|
||
|
GamePlayback,
|
||
|
VideoPlayback,
|
||
|
AudioPlaybackStopped,
|
||
|
GamePlaybackStopped,
|
||
|
VideoPlaybackStopped,
|
||
|
InstallationFailed,
|
||
|
PluginError,
|
||
|
PluginInstalled,
|
||
|
PluginUpdateInstalled,
|
||
|
PluginUninstalled,
|
||
|
NewLibraryContent,
|
||
|
ServerRestartRequired,
|
||
|
TaskFailed,
|
||
|
CameraImageUploaded,
|
||
|
UserLockedOut
|
||
|
}
|
||
|
}
|