Kavita/API/Interfaces/Services/IBackupService.cs

7 lines
119 B
C#

namespace API.Interfaces.Services
{
public interface IBackupService
{
void BackupDatabase();
}
}