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