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

17 lines
563 B
C#
Raw Normal View History

using System.Diagnostics.CodeAnalysis;
2020-02-09 02:35:16 +00:00
namespace Jackett.Common.Models.IndexerConfig.Bespoke
{
[ExcludeFromCodeCoverage]
internal class ConfigurationDataSceneTime : ConfigurationDataCookie
{
public BoolItem Freeleech { get; private set; }
public ConfigurationDataSceneTime()
: base("For best results, change the 'Torrents per page' setting to the maximum in your profile on the SceneTime webpage.")
{
Freeleech = new BoolItem() { Name = "Freeleech Only (Optional)", Value = false };
}
}
}