Radarr/NzbDrone.Core/Indexers/Newznab/NewznabSettings.cs

30 lines
676 B
C#
Raw Normal View History

using System;
2013-07-31 03:41:46 +00:00
using System.Collections.Generic;
2013-05-03 05:24:52 +00:00
using NzbDrone.Core.Annotations;
namespace NzbDrone.Core.Indexers.Newznab
{
public class NewznabSettings : IIndexerSetting
{
2013-07-31 03:41:46 +00:00
public NewznabSettings()
{
Categories = new [] { 5030, 5040 };
}
2013-05-29 07:06:25 +00:00
[FieldDefinition(0, Label = "URL")]
public String Url { get; set; }
2013-05-03 05:24:52 +00:00
2013-05-29 07:06:25 +00:00
[FieldDefinition(1, Label = "API Key")]
public String ApiKey { get; set; }
2013-07-31 03:41:46 +00:00
public IEnumerable<Int32> Categories { get; set; }
public bool IsValid
{
get
{
return !string.IsNullOrWhiteSpace(Url);
}
}
}
}