8 lines
262 B
C#
8 lines
262 B
C#
|
|
namespace WorkTracker.Services.Storage;
|
||
|
|
|
||
|
|
public interface IDatabaseBackupService
|
||
|
|
{
|
||
|
|
Task<DatabaseBackupFile> ExportAsync(CancellationToken cancellationToken = default);
|
||
|
|
|
||
|
|
Task ImportAsync(Stream jsonStream, CancellationToken cancellationToken = default);
|
||
|
|
}
|