mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-28 23:27:08 -04:00
17 lines
450 B
C#
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; }
|
|
}
|
|
}
|