jellyfin/MediaBrowser.Model/Notifications/NotificationLevel.cs
2014-02-17 16:35:08 -05:00

11 lines
156 B
C#

namespace MediaBrowser.Model.Notifications
{
public enum NotificationLevel
{
Normal = 1,
Warning = 2,
Error = 3
}
}