jellyfin/MediaBrowser.Model/Notifications/NotificationLevel.cs
2019-01-17 20:24:39 +01:00

10 lines
152 B
C#

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