Files
HanaToolbox/Services/Interfaces/IBackupService.cs
2026-03-02 20:53:28 +01:00

9 lines
208 B
C#

using HanaToolbox.Config;
namespace HanaToolbox.Services.Interfaces;
public interface IBackupService
{
Task RunAsync(BackupConfig config, HanaConfig hana, string sid, CancellationToken ct = default);
}