add new interface for data export

This commit is contained in:
Вячеслав 2025-06-09 01:39:25 +05:00
parent facbd1b56b
commit 1baf69234a

View file

@ -0,0 +1,6 @@
namespace SurveyLib.Core.Tools;
public interface IDataExporter
{
Task<byte[]> ExportDataBySurveyIdAsync(int surveyId);
}