using System.Diagnostics.CodeAnalysis; namespace Jackett.Common.Models.IndexerConfig.Bespoke { [ExcludeFromCodeCoverage] internal class ConfigurationDataFileList : ConfigurationDataUserPasskey { public BoolConfigurationItem IncludeRomanianReleases { get; private set; } public DisplayInfoConfigurationItem CatWarning { get; private set; } public ConfigurationDataFileList() : base("Note this is not your password.") { IncludeRomanianReleases = new BoolConfigurationItem("IncludeRomanianReleases") { Value = false }; CatWarning = new DisplayInfoConfigurationItem("CatWarning", "When mapping TV ensure you add category 5000 in addition to 5030, 5040."); } } }