1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-17 10:45:49 +02:00
Sonarr/NzbDrone.Core/Notifications/PushBullet/PushBulletSettings.cs

23 lines
571 B
C#
Raw Normal View History

2013-09-18 10:33:31 +03:00
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;
}
}
}
}