using System.Collections.Generic; using System.Linq; namespace AsbCloudApp.Data; /// /// Результат парсинга файла /// /// public class ParserResultDto : ValidationResultDto>> where TDto : class, IId { /// /// Объекты полученные из файла /// public override IEnumerable> Item { get; set; } = Enumerable.Empty>(); }