2024-01-29 14:39:53 +05:00
|
|
|
using System.Collections.Generic;
|
2024-03-22 12:42:48 +05:00
|
|
|
using System.Linq;
|
2024-01-29 14:39:53 +05:00
|
|
|
|
|
|
|
namespace AsbCloudApp.Data;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Результат парсинга файла
|
|
|
|
/// </summary>
|
|
|
|
/// <typeparam name="TDto"></typeparam>
|
|
|
|
public class ParserResultDto<TDto> : ValidationResultDto<IEnumerable<ValidationResultDto<TDto>>>
|
2024-07-04 11:02:45 +05:00
|
|
|
where TDto : class, IId
|
2024-01-29 14:39:53 +05:00
|
|
|
{
|
2024-07-04 11:02:45 +05:00
|
|
|
/// <summary>
|
|
|
|
/// Объекты полученные из файла
|
|
|
|
/// </summary>
|
|
|
|
public override IEnumerable<ValidationResultDto<TDto>> Item { get; set; } = Enumerable.Empty<ValidationResultDto<TDto>>();
|
2024-01-29 14:39:53 +05:00
|
|
|
}
|