mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-18 23:48:35 +02:00
7af782d353
New: Test button for indexers in UI Fixed: Testing download clients shows error messages in UI Fixed: Testing notifications shows error messages in UI
32 lines
748 B
C#
32 lines
748 B
C#
using System;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.ThingiProvider
|
|
{
|
|
public abstract class ProviderDefinition : ModelBase
|
|
{
|
|
private IProviderConfig _settings;
|
|
|
|
public String Name { get; set; }
|
|
public String Implementation { get; set; }
|
|
public String ConfigContract { get; set; }
|
|
public virtual Boolean Enable { get; set; }
|
|
|
|
public IProviderConfig Settings
|
|
{
|
|
get
|
|
{
|
|
return _settings;
|
|
}
|
|
set
|
|
{
|
|
_settings = value;
|
|
if (value != null)
|
|
{
|
|
ConfigContract = value.GetType().Name;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|