mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
16 lines
471 B
C#
16 lines
471 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace Jackett.Common.Models.IndexerConfig.Bespoke
|
|
{
|
|
[ExcludeFromCodeCoverage]
|
|
internal class ConfigurationDataSpeedAppTracker : ConfigurationDataBasicLoginWithEmail
|
|
{
|
|
public BoolConfigurationItem FreeleechOnly { get; private set; }
|
|
|
|
public ConfigurationDataSpeedAppTracker()
|
|
{
|
|
FreeleechOnly = new BoolConfigurationItem("Show freeleech only") { Value = false };
|
|
}
|
|
}
|
|
}
|