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