mirror of
https://github.com/Radarr/Radarr
synced 2024-12-27 10:19:41 +00:00
10 lines
179 B
C#
10 lines
179 B
C#
namespace NzbDrone.Core.Notifications.Pushover
|
|
{
|
|
public enum PushoverPriority
|
|
{
|
|
Quiet = -1,
|
|
Normal = 0,
|
|
High = 1,
|
|
Emergency = 2
|
|
}
|
|
}
|