forked from ddrilling/AsbCloudServer
10 lines
244 B
C#
10 lines
244 B
C#
using System.IO;
|
|
using AsbCloudApp.Data;
|
|
|
|
namespace AsbCloudWebApi.Controllers.Interfaces;
|
|
|
|
public interface IHasExcelParserWithOptions<TDto, in TOptions>
|
|
where TDto : class, IId
|
|
{
|
|
ParserResultDto<TDto> Parse(Stream file, TOptions options);
|
|
} |