mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
17 lines
479 B
C#
17 lines
479 B
C#
using NzbDrone.Common;
|
|
using NzbDrone.Common.Serializer;
|
|
|
|
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;
|
|
}
|
|
}
|
|
} |