mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 17:47:08 +00:00
26 lines
418 B
C#
26 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;
|
|
}
|
|
}
|
|
}
|
|
}
|