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]
|
2023-11-07 20:00:03 +00:00
|
|
|
internal class ConfigurationDataSceneTime : ConfigurationDataCookieUA
|
2019-03-29 03:32:35 +00:00
|
|
|
{
|
2021-03-16 23:29:26 +00:00
|
|
|
public BoolConfigurationItem Freeleech { get; private set; }
|
2024-03-05 21:40:14 +00:00
|
|
|
public DisplayInfoConfigurationItem AccountActivity { get; private set; }
|
2019-03-29 03:32:35 +00:00
|
|
|
|
|
|
|
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
|
|
|
{
|
2021-03-16 23:29:26 +00:00
|
|
|
Freeleech = new BoolConfigurationItem("Freeleech Only (Optional)") { Value = false };
|
2024-03-05 21:40:14 +00:00
|
|
|
AccountActivity = new DisplayInfoConfigurationItem("Account Inactivity", "Unused accounts (accounts with no activity) may be deleted.");
|
2019-03-29 03:32:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|