13 lines
420 B
C#
13 lines
420 B
C#
using System.Collections.Generic;
|
|
|
|
namespace StellaOps.Vexer.Connectors.Abstractions;
|
|
|
|
/// <summary>
|
|
/// Custom validator hook executed after connector options are bound.
|
|
/// </summary>
|
|
/// <typeparam name="TOptions">Connector-specific options type.</typeparam>
|
|
public interface IVexConnectorOptionsValidator<in TOptions>
|
|
{
|
|
void Validate(VexConnectorDescriptor descriptor, TOptions options, IList<string> errors);
|
|
}
|