add new interface for data export

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

View file

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