8 lines
176 B
C#
8 lines
176 B
C#
|
namespace DamageAssesment.Api.Responses.Interfaces
|
|||
|
{
|
|||
|
public interface IExcelExportService
|
|||
|
{
|
|||
|
public byte[] ExportToExcel<T1>(List<object> responses);
|
|||
|
}
|
|||
|
}
|