Files
jellyfin-jellyfin-1/MediaBrowser.Model/Notifications/NotificationLevel.cs

11 lines
156 B
C#
Raw Normal View History

2013-07-06 17:23:32 -04:00

namespace MediaBrowser.Model.Notifications
{
public enum NotificationLevel
{
Normal = 1,
Warning = 2,
Error = 3
2013-07-06 17:23:32 -04:00
}
}