1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

Added NMA support, also added generic HttpStatusCode handling

This commit is contained in:
Mark McDowall
2013-09-16 11:14:09 -07:00
parent de012aec21
commit eb7dda0629
12 changed files with 254 additions and 2 deletions
@@ -0,0 +1,11 @@
namespace NzbDrone.Core.Notifications.NotifyMyAndroid
{
public enum NotifyMyAndroidPriority
{
VeryLow = -2,
Moderate = -1,
Normal = 0,
High = 1,
Emergency = 2
}
}