using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace DBHelper { public class EntityValidationException : Exception { public List<ValidationResult> EntityValidationErrors = new(); } }