1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-15 21:05:48 -04:00
Files
Radarr/NzbDrone.Core/Notifications/Pushover/PushoverPriority.cs
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
}
}