aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Notifications/NotificationType.cs
blob: 269e27a4fc8c36f87dff11df4bb6ba9f4309b7b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
namespace MediaBrowser.Model.Notifications
{
    public enum NotificationType
    {
        ApplicationUpdateAvailable,
        ApplicationUpdateInstalled,
        AudioPlayback,
        GamePlayback,
        VideoPlayback,
        AudioPlaybackStopped,
        GamePlaybackStopped,
        VideoPlaybackStopped,
        InstallationFailed,
        PluginError,
        PluginInstalled,
        PluginUpdateInstalled,
        PluginUninstalled,
        NewLibraryContent,
        NewLibraryContentMultiple,
        ServerRestartRequired,
        TaskFailed,
        CameraImageUploaded
    }
}