mirror of https://github.com/lidarr/Lidarr
23 lines
633 B
C#
23 lines
633 B
C#
|
using System;
|
|||
|
using NzbDrone.Core.Annotations;
|
|||
|
|
|||
|
namespace NzbDrone.Core.Notifications.Pushover
|
|||
|
{
|
|||
|
public class PushoverSettings : INotifcationSettings
|
|||
|
{
|
|||
|
[FieldDefinition(0, Label = "User Key")]
|
|||
|
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|