mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Added PushBullet notifications
This commit is contained in:
parent
742a21252c
commit
42efef0bb2
5 changed files with 129 additions and 0 deletions
22
NzbDrone.Core/Notifications/PushBullet/PushBulletSettings.cs
Normal file
22
NzbDrone.Core/Notifications/PushBullet/PushBulletSettings.cs
Normal file
|
@ -0,0 +1,22 @@
|
|||
using System;
|
||||
using NzbDrone.Core.Annotations;
|
||||
|
||||
namespace NzbDrone.Core.Notifications.PushBullet
|
||||
{
|
||||
public class PushBulletSettings : INotifcationSettings
|
||||
{
|
||||
[FieldDefinition(0, Label = "API Key", HelpLink = "https://www.pushbullet.com/")]
|
||||
public String ApiKey { get; set; }
|
||||
|
||||
[FieldDefinition(1, Label = "Device ID")]
|
||||
public Int32 DeviceId { get; set; }
|
||||
|
||||
public bool IsValid
|
||||
{
|
||||
get
|
||||
{
|
||||
return !String.IsNullOrWhiteSpace(ApiKey) && DeviceId > 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue