11 lines
156 B
C#
11 lines
156 B
C#
|
|
namespace MediaBrowser.Model.Notifications
|
|
{
|
|
public enum NotificationLevel
|
|
{
|
|
Normal = 0,
|
|
Warning = 1,
|
|
Error = 2
|
|
}
|
|
}
|