WIP: AI Validator

This commit is contained in:
2025-12-15 20:05:26 +01:00
parent 096ff5573e
commit f10dfe629e
16 changed files with 1686 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
using DiunaBI.Domain.Entities;
namespace DiunaBI.Infrastructure.Interfaces;
public interface IDataValidator
{
string ValidatorType { get; }
bool CanValidate(string validatorType);
void Validate(Layer validationWorker);
}