mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-03-05 15:15:59 +02:00
20 lines
301 B
C#
20 lines
301 B
C#
|
namespace NzbDrone.Core.Indexers
|
||
|
{
|
||
|
public interface IIndexerSetting
|
||
|
{
|
||
|
bool IsValid { get; }
|
||
|
}
|
||
|
|
||
|
|
||
|
public class NullSetting : IIndexerSetting
|
||
|
{
|
||
|
public bool IsValid
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|