mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-01-01 02:26:01 +01:00
10 lines
159 B
C#
10 lines
159 B
C#
using FluentValidation.Results;
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public interface IIndexerSetting
|
|
{
|
|
ValidationResult Validate();
|
|
}
|
|
}
|