mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
21 lines
532 B
C#
21 lines
532 B
C#
using NzbDrone.Common.Serializer;
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public abstract class IndexerWithSetting<TSetting> : IndexerBase where TSetting : class, IIndexerSetting, 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;
|
|
}
|
|
}
|
|
} |