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