1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/NzbDrone.Core/Indexers/Newznab/NewznabSettings.cs
2013-05-02 22:24:52 -07:00

22 lines
538 B
C#

using System;
using NzbDrone.Core.Annotations;
namespace NzbDrone.Core.Indexers.Newznab
{
public class NewznabSettings : IIndexerSetting
{
[FieldDefinition(0, Label = "URL", HelpText = "NewzNab Host Url")]
public String Url { get; set; }
[FieldDefinition(1, Label = "API Key", HelpText = "Your API Key")]
public String ApiKey { get; set; }
public bool IsValid
{
get
{
return !string.IsNullOrWhiteSpace(Url);
}
}
}
}