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.
23 lines
669 B
23 lines
669 B
using System;
|
|
using NzbDrone.Core.Annotations;
|
|
|
|
namespace NzbDrone.Core.Notifications.Pushover
|
|
{
|
|
public class PushoverSettings : INotifcationSettings
|
|
{
|
|
[FieldDefinition(0, Label = "User Key", HelpLink = "https://pushover.net/")]
|
|
public String UserKey { get; set; }
|
|
|
|
[FieldDefinition(1, Label = "Priority", Type = FieldType.Select, SelectOptions = typeof(PushoverPriority) )]
|
|
public Int32 Priority { get; set; }
|
|
|
|
public bool IsValid
|
|
{
|
|
get
|
|
{
|
|
return !string.IsNullOrWhiteSpace(UserKey) && Priority != null & Priority >= -1 && Priority <= 2;
|
|
}
|
|
}
|
|
}
|
|
}
|