Jackett/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataFileList.cs

16 lines
606 B
C#

namespace Jackett.Common.Models.IndexerConfig.Bespoke
{
internal class ConfigurationDataFileList : ConfigurationDataBasicLogin
{
public BoolItem IncludeRomanianReleases { get; private set; }
public DisplayItem CatWarning { get; private set; }
public ConfigurationDataFileList()
: base()
{
IncludeRomanianReleases = new BoolItem() { Name = "IncludeRomanianReleases", Value = false };
CatWarning = new DisplayItem("When mapping TV ensure you add category 5000 in addition to 5030,5040.") { Name = "CatWarning" };
}
}
}