jellyfin-server/MediaBrowser.Model/Notifications/NotificationLevel.cs

11 lines
156 B
C#
Raw Normal View History

2013-07-06 21:23:32 +00:00

namespace MediaBrowser.Model.Notifications
{
public enum NotificationLevel
{
2014-02-19 05:21:03 +00:00
Normal = 0,
Warning = 1,
Error = 2
2013-07-06 21:23:32 +00:00
}
}