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 @@
using NzbDrone.Common.Messaging;
namespace NzbDrone.Core.Notifications.Pushover
{
public class TestPushoverCommand : ICommand
{
public string UserKey { get; set; }
public int Priority { get; set; }
}
}