1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-01 04:36:37 +00:00
Sonarr/NzbDrone.Core/Indexers/IIndexerSettings.cs
2013-04-07 00:30:37 -07:00

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