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