1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/Indexers/IndexerWithSetting.cs

21 lines
532 B
C#
Raw Normal View History

2013-05-12 18:18:17 +03:00
using NzbDrone.Common.Serializer;
2013-04-11 02:44:48 +03:00
namespace NzbDrone.Core.Indexers
{
public abstract class IndexerWithSetting<TSetting> : IndexerBase where TSetting : class, IIndexerSetting, new()
2013-04-11 02:44:48 +03:00
{
2013-06-04 06:33:03 +03:00
public TSetting Settings { get; set; }
2013-04-11 02:44:48 +03:00
public override bool EnableByDefault
{
get { return false; }
}
public TSetting ImportSettingsFromJson(string json)
2013-04-11 02:44:48 +03:00
{
2013-05-13 05:52:55 +03:00
Settings = Json.Deserialize<TSetting>(json) ?? new TSetting();
return Settings;
2013-04-11 02:44:48 +03:00
}
}
}