Files
DiunaBI/DiunaBI.Infrastructure/Interfaces/IDataValidator.cs

12 lines
236 B
C#
Raw Normal View History

2025-12-15 20:05:26 +01:00
using DiunaBI.Domain.Entities;
namespace DiunaBI.Infrastructure.Interfaces;
public interface IDataValidator
{
string ValidatorType { get; }
bool CanValidate(string validatorType);
void Validate(Layer validationWorker);
}