Files
2023-11-01 12:42:30 -04:00

8 lines
176 B
C#

namespace DamageAssesment.Api.Responses.Interfaces
{
public interface IExcelExportService
{
public byte[] ExportToExcel<T1>(List<object> responses);
}
}