1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-13 22:43:35 +01:00
Radarr/NzbDrone.Core/Indexers/Newznab/NewznabSettings.cs

22 lines
480 B
C#
Raw Normal View History

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