2014-07-02 18:34:08 +00:00
|
|
|
namespace MediaBrowser.Model.Notifications
|
2014-05-08 20:26:20 +00:00
|
|
|
{
|
|
|
|
public enum NotificationType
|
|
|
|
{
|
|
|
|
ApplicationUpdateAvailable,
|
|
|
|
ApplicationUpdateInstalled,
|
|
|
|
AudioPlayback,
|
|
|
|
GamePlayback,
|
2014-05-16 17:11:07 +00:00
|
|
|
VideoPlayback,
|
|
|
|
AudioPlaybackStopped,
|
|
|
|
GamePlaybackStopped,
|
|
|
|
VideoPlaybackStopped,
|
2014-05-08 20:26:20 +00:00
|
|
|
InstallationFailed,
|
|
|
|
PluginError,
|
|
|
|
PluginInstalled,
|
|
|
|
PluginUpdateInstalled,
|
|
|
|
PluginUninstalled,
|
|
|
|
NewLibraryContent,
|
2014-05-09 04:38:12 +00:00
|
|
|
NewLibraryContentMultiple,
|
2014-05-08 20:26:20 +00:00
|
|
|
ServerRestartRequired,
|
2015-01-26 16:47:15 +00:00
|
|
|
TaskFailed,
|
2015-03-02 05:16:29 +00:00
|
|
|
CameraImageUploaded,
|
|
|
|
UserLockedOut
|
2014-05-08 20:26:20 +00:00
|
|
|
}
|
|
|
|
}
|