1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-23 22:25:14 -04:00
Files
Radarr/NzbDrone.Core/Indexers/IIndexerSettings.cs
T
2013-04-07 00:30:37 -07:00

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;
}
}
}
}