jellyfin/MediaBrowser.Model/Notifications/NotificationLevel.cs

12 lines
184 B
C#

#pragma warning disable CS1591
namespace MediaBrowser.Model.Notifications
{
public enum NotificationLevel
{
Normal = 0,
Warning = 1,
Error = 2
}
}