Added pushover notifications

This commit is contained in:
Mark McDowall 2013-07-25 00:24:09 -07:00
commit e96e1b10db
7 changed files with 159 additions and 0 deletions

View file

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