mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-24 22:55:21 -04:00
20 lines
540 B
C#
20 lines
540 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Annotations;
|
|
using NzbDrone.Core.Indexers.Settings;
|
|
|
|
namespace NzbDrone.Core.Indexers.Definitions.Cardigann
|
|
{
|
|
public class CardigannSettings : NoAuthTorrentBaseSettings
|
|
{
|
|
public CardigannSettings()
|
|
{
|
|
ExtraFieldData = new Dictionary<string, object>();
|
|
}
|
|
|
|
[FieldDefinition(0, Hidden = HiddenType.Hidden)]
|
|
public string DefinitionFile { get; set; }
|
|
|
|
public Dictionary<string, object> ExtraFieldData { get; set; }
|
|
}
|
|
}
|