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