8 lines
244 B
C#
8 lines
244 B
C#
namespace PARR.TemplateGeneratorWorker.Services
|
|
{
|
|
public interface IValidatorService
|
|
{
|
|
Task<bool> IsValidAsync(Guid jobId, Guid unitId, int? index, List<(Guid UnitId, Guid UnitFieldValueId)>? unitsInTemplate = null);
|
|
}
|
|
}
|