1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00
Files
Radarr/src/NzbDrone.Core/Notifications/Pushover/PushoverPriority.cs
T
2017-01-19 23:51:58 -08:00

12 lines
200 B
C#

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