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