mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-22 22:15:17 -04:00
12 lines
200 B
C#
12 lines
200 B
C#
namespace NzbDrone.Core.Notifications.Pushover
|
|
{
|
|
public enum PushoverPriority
|
|
{
|
|
Silent = -2,
|
|
Quiet = -1,
|
|
Normal = 0,
|
|
High = 1,
|
|
Emergency = 2
|
|
}
|
|
}
|