Lidarr/src/NzbDrone.Core/Notifications/Pushover/PushoverSettings.cs

30 lines
845 B
C#
Raw Normal View History

2013-07-25 07:24:09 +00:00
using System;
using FluentValidation.Results;
2013-07-25 07:24:09 +00:00
using NzbDrone.Core.Annotations;
using NzbDrone.Core.ThingiProvider;
2013-07-25 07:24:09 +00:00
namespace NzbDrone.Core.Notifications.Pushover
{
public class PushoverSettings : IProviderConfig
2013-07-25 07:24:09 +00:00
{
[FieldDefinition(0, Label = "User Key", HelpLink = "https://pushover.net/")]
2013-07-25 07:24:09 +00:00
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;
}
}
public ValidationResult Validate()
{
throw new NotImplementedException();
}
2013-07-25 07:24:09 +00:00
}
}