mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-22 22:15:17 -04:00
22 lines
568 B
C#
22 lines
568 B
C#
using NzbDrone.Common.Serializer;
|
|
using NzbDrone.Core.ThingiProvider;
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public abstract class IndexerWithSetting<TSetting> : IndexerBase where TSetting : class, IProviderConfig, new()
|
|
{
|
|
public TSetting Settings { get; set; }
|
|
|
|
public override bool EnableByDefault
|
|
{
|
|
get { return false; }
|
|
}
|
|
|
|
public TSetting ImportSettingsFromJson(string json)
|
|
{
|
|
Settings = Json.Deserialize<TSetting>(json) ?? new TSetting();
|
|
|
|
return Settings;
|
|
}
|
|
}
|
|
} |