You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
713 B
26 lines
713 B
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 Nullable<Int32> Priority { get; set; }
|
|
|
|
public bool IsValid
|
|
{
|
|
get
|
|
{
|
|
return !string.IsNullOrWhiteSpace(ApiKey) && Priority != null & Priority >= -2 && Priority <= 2;
|
|
}
|
|
}
|
|
}
|
|
}
|