Added PushBullet notifications

This commit is contained in:
Mark McDowall 2013-09-18 00:33:31 -07:00
commit 42efef0bb2
5 changed files with 129 additions and 0 deletions

View file

@ -0,0 +1,18 @@
using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.Notifications.PushBullet
{
public class TestPushBulletCommand : Command
{
public override bool SendUpdatesToClient
{
get
{
return true;
}
}
public string ApiKey { get; set; }
public int DeviceId { get; set; }
}
}