mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 08:15:28 +03:00
11 lines
156 B
C#
11 lines
156 B
C#
|
|
namespace MediaBrowser.Model.Notifications
|
|
{
|
|
public enum NotificationLevel
|
|
{
|
|
Normal = 1,
|
|
Warning = 2,
|
|
Error = 3
|
|
}
|
|
}
|