jellyfin/MediaBrowser.Model/Notifications/NotificationLevel.cs

10 lines
152 B
C#
Raw Normal View History

2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Model.Notifications
{
public enum NotificationLevel
{
Normal = 0,
Warning = 1,
Error = 2
}
}