2013-05-20 02:17:32 +03:00
|
|
|
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
|
|
|
|
{
|
2013-06-28 04:55:45 +03:00
|
|
|
[FieldDefinition(0, Label = "API Key")]
|
2013-05-20 02:17:32 +03:00
|
|
|
public String ApiKey { get; set; }
|
|
|
|
|
2013-06-28 04:55:45 +03:00
|
|
|
[FieldDefinition(1, Label = "Priority", Type = FieldType.Select, SelectOptions= typeof(ProwlPriority) )]
|
2013-06-13 10:20:33 +03:00
|
|
|
public Int32 Priority { get; set; }
|
2013-05-20 02:17:32 +03:00
|
|
|
|
|
|
|
public bool IsValid
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
2013-05-20 05:43:22 +03:00
|
|
|
return !string.IsNullOrWhiteSpace(ApiKey) && Priority != null & Priority >= -2 && Priority <= 2;
|
2013-05-20 02:17:32 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|