using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; namespace AsbCloudApp.Data; /// /// Результат валидации объекта /// public class ValidationResultDto where T : class { /// /// Флаг валидности /// public bool IsValid => !Warnings.Any(); /// /// Объект валидации /// public T Item { get; set; } = null!; /// /// Предупреждения /// public IEnumerable Warnings { get; set; } = Enumerable.Empty(); }