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

27 lines
418 B
C#
Raw Normal View History

2013-04-07 10:30:37 +03: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 10:30:37 +03:00
public bool IsValid
{
get
{
return true;
}
}
}
}