2014-05-08 16:26:20 -04:00
|
|
|
namespace MediaBrowser.Model.Configuration
|
|
|
|
|
{
|
|
|
|
|
public enum NotificationType
|
|
|
|
|
{
|
|
|
|
|
ApplicationUpdateAvailable,
|
|
|
|
|
ApplicationUpdateInstalled,
|
|
|
|
|
AudioPlayback,
|
|
|
|
|
GamePlayback,
|
2014-05-16 13:11:07 -04:00
|
|
|
VideoPlayback,
|
|
|
|
|
AudioPlaybackStopped,
|
|
|
|
|
GamePlaybackStopped,
|
|
|
|
|
VideoPlaybackStopped,
|
2014-05-08 16:26:20 -04:00
|
|
|
InstallationFailed,
|
|
|
|
|
PluginError,
|
|
|
|
|
PluginInstalled,
|
|
|
|
|
PluginUpdateInstalled,
|
|
|
|
|
PluginUninstalled,
|
|
|
|
|
NewLibraryContent,
|
2014-05-09 00:38:12 -04:00
|
|
|
NewLibraryContentMultiple,
|
2014-05-08 16:26:20 -04:00
|
|
|
ServerRestartRequired,
|
2014-05-16 13:11:07 -04:00
|
|
|
TaskFailed
|
2014-05-08 16:26:20 -04:00
|
|
|
}
|
|
|
|
|
}
|