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

19 lines
813 B
C#

using System.Diagnostics.CodeAnalysis;
namespace Jackett.Common.Models.IndexerConfig.Bespoke
{
[ExcludeFromCodeCoverage]
internal class ConfigurationDataSceneTime : ConfigurationDataCookieUA
{
public BoolConfigurationItem Freeleech { get; private set; }
public DisplayInfoConfigurationItem AccountActivity { 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 BoolConfigurationItem("Freeleech Only (Optional)") { Value = false };
AccountActivity = new DisplayInfoConfigurationItem("Account Inactivity", "Unused accounts (accounts with no activity) may be deleted.");
}
}
}