Files
Prowlarr/src/NzbDrone.Core/Indexers/Definitions/Rarbg/RarbgSettings.cs
T
2023-02-21 02:38:29 +02:00

17 lines
450 B
C#

using NzbDrone.Core.Annotations;
using NzbDrone.Core.Indexers.Settings;
namespace NzbDrone.Core.Indexers.Definitions.Rarbg
{
public class RarbgSettings : NoAuthTorrentBaseSettings
{
public RarbgSettings()
{
RankedOnly = false;
}
[FieldDefinition(2, Type = FieldType.Checkbox, Label = "Ranked Only", HelpText = "Only include ranked results.")]
public bool RankedOnly { get; set; }
}
}