8 lines
179 B
C#
8 lines
179 B
C#
namespace TrafagSalesExporter.Services;
|
|
|
|
public interface IConfigTransferService
|
|
{
|
|
Task<string> ExportJsonAsync(bool includeSecrets);
|
|
Task ImportJsonAsync(string json);
|
|
}
|