1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-21 00:41:43 +02:00
Radarr/NzbDrone.Core/Notifications/Prowl/ProwlSettings.cs
2013-05-19 18:32:25 -07:00

26 lines
665 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NzbDrone.Core.Annotations;
namespace NzbDrone.Core.Notifications.Prowl
{
public class ProwlSettings : INotifcationSettings
{
[FieldDefinition(0, Label = "API Key", HelpText = "API Key for Prowl")]
public String ApiKey { get; set; }
[FieldDefinition(1, Label = "Priority", HelpText = "Priority to send messages at")]
public Int32 Priority { get; set; }
public bool IsValid
{
get
{
return !string.IsNullOrWhiteSpace(ApiKey) && Priority > 0;
}
}
}
}