aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Notifications/NotificationLevel.cs
blob: a49ee2fe6317ed53fa4194993d01e1c2d5e85994 (plain)
1
2
3
4
5
6
7
8
9
10
namespace MediaBrowser.Model.Notifications
{
    public enum NotificationLevel
    {
        Normal = 0,
        Warning = 1,
        Error = 2
    }
}