mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-28 10:48:46 +00:00
19 lines
301 B
C#
19 lines
301 B
C#
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public interface IIndexerSetting
|
|
{
|
|
bool IsValid { get; }
|
|
}
|
|
|
|
|
|
public class NullSetting : IIndexerSetting
|
|
{
|
|
public bool IsValid
|
|
{
|
|
get
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
}
|