mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
27 lines
418 B
C#
27 lines
418 B
C#
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public interface IIndexerSetting
|
|
{
|
|
bool IsValid { get; }
|
|
}
|
|
|
|
|
|
public class NullSetting : IIndexerSetting
|
|
{
|
|
public static NullSetting Instance = new NullSetting();
|
|
|
|
private NullSetting()
|
|
{
|
|
|
|
}
|
|
|
|
public bool IsValid
|
|
{
|
|
get
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
}
|