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