mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-26 20:11:49 +02:00
16 lines
445 B
C#
16 lines
445 B
C#
using NzbDrone.Common;
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public abstract class IndexerWithSetting<TSetting> : IndexerBase where TSetting : class, IIndexerSetting, new()
|
|
{
|
|
public TSetting Settings { get; private set; }
|
|
|
|
public TSetting ImportSettingsFromJson(string json)
|
|
{
|
|
Settings = new JsonSerializer().Deserialize<TSetting>(json) ?? new TSetting();
|
|
|
|
return Settings;
|
|
}
|
|
}
|
|
} |