Radarr/NzbDrone.Core/Indexers/IIndexerSetting.cs

27 lines
418 B
C#
Raw Normal View History

2013-04-07 07:30:37 +00:00
namespace NzbDrone.Core.Indexers
{
public interface IIndexerSetting
{
bool IsValid { get; }
}
public class NullSetting : IIndexerSetting
{
public static NullSetting Instance = new NullSetting();
private NullSetting()
{
}
2013-04-07 07:30:37 +00:00
public bool IsValid
{
get
{
return true;
}
}
}
}