2013-05-02 01:59:09 +00:00
|
|
|
using System;
|
2013-05-03 05:24:52 +00:00
|
|
|
using NzbDrone.Core.Annotations;
|
2013-05-02 01:59:09 +00:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.Indexers.Newznab
|
|
|
|
{
|
|
|
|
public class NewznabSettings : IIndexerSetting
|
|
|
|
{
|
2013-05-03 05:24:52 +00:00
|
|
|
[FieldDefinition(0, Label = "URL", HelpText = "NewzNab Host Url")]
|
2013-05-02 01:59:09 +00:00
|
|
|
public String Url { get; set; }
|
2013-05-03 05:24:52 +00:00
|
|
|
|
|
|
|
[FieldDefinition(1, Label = "API Key", HelpText = "Your API Key")]
|
2013-05-02 01:59:09 +00:00
|
|
|
public String ApiKey { get; set; }
|
|
|
|
|
|
|
|
public bool IsValid
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return !string.IsNullOrWhiteSpace(Url);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|