EntityValidationException.cs 256 B

1234567891011
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. namespace DBHelper
  5. {
  6. public class EntityValidationException : Exception
  7. {
  8. public List<ValidationResult> EntityValidationErrors = new();
  9. }
  10. }