You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
702 B
31 lines
702 B
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Core.Annotations;
|
|
|
|
namespace NzbDrone.Core.Indexers.Newznab
|
|
{
|
|
public class NewznabSettings : IIndexerSetting
|
|
{
|
|
public NewznabSettings()
|
|
{
|
|
Categories = new [] { 5030, 5040 };
|
|
}
|
|
|
|
[FieldDefinition(0, Label = "URL")]
|
|
public String Url { get; set; }
|
|
|
|
[FieldDefinition(1, Label = "API Key")]
|
|
public String ApiKey { get; set; }
|
|
|
|
public IEnumerable<Int32> Categories { get; set; }
|
|
|
|
public bool IsValid
|
|
{
|
|
get
|
|
{
|
|
return !string.IsNullOrWhiteSpace(Url);
|
|
}
|
|
}
|
|
}
|
|
} |