1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-25 22:37:27 -04:00
Files
Radarr/NzbDrone.Core/Notifications/Pushover/PushoverPriority.cs
T
2013-07-25 00:24:09 -07:00

11 lines
179 B
C#

namespace NzbDrone.Core.Notifications.Pushover
{
public enum PushoverPriority
{
Quiet = -1,
Normal = 0,
High = 1,
Emergency = 2
}
}