1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-19 10:54:05 +02:00
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
}
}