mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 18:42:42 +01:00
22 lines
538 B
C#
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);
|
|
}
|
|
}
|
|
}
|
|
} |