blob: 88f3d9b647458d23518d0c5ce20ef38691d8a9d6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
using System.Threading;
using System.Threading.Tasks;
namespace Timeline.Services.DatabaseManagement
{
public interface IDatabaseBackupService
{
Task BackupAsync(CancellationToken cancellationToken = default);
}
}
|