1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/Indexers/Newznab/NewznabSettings.cs

22 lines
538 B
C#
Raw Normal View History

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