forked from ddrilling/AsbCloudServer
12 lines
309 B
C#
12 lines
309 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace AsbCloudApp.Data;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Результат парсинга файла
|
||
|
/// </summary>
|
||
|
/// <typeparam name="TDto"></typeparam>
|
||
|
public class ParserResultDto<TDto> : ValidationResultDto<IEnumerable<ValidationResultDto<TDto>>>
|
||
|
where TDto : class, IId
|
||
|
{
|
||
|
}
|