mirror of
https://github.com/Readarr/Readarr
synced 2026-01-17 21:13:38 +01:00
9 lines
159 B
C#
9 lines
159 B
C#
using FluentValidation.Results;
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public interface IIndexerSetting
|
|
{
|
|
ValidationResult Validate();
|
|
}
|
|
}
|