mirror of
https://github.com/Radarr/Radarr
synced 2024-12-29 03:15:19 +00:00
11 lines
193 B
C#
11 lines
193 B
C#
namespace NzbDrone.Core.Notifications.Prowl
|
|
{
|
|
public enum ProwlPriority
|
|
{
|
|
VeryLow = -2,
|
|
Low = -1,
|
|
Normal = 0,
|
|
High = 1,
|
|
Emergency = 2
|
|
}
|
|
}
|