backup read, upload and restore

This commit is contained in:
Julian Krauser 2025-02-02 16:37:46 +01:00
parent e5cb8fecc6
commit f8fb222ebb
13 changed files with 555 additions and 8 deletions

View file

@ -0,0 +1,7 @@
import type { BackupSection } from "../../../types/backupTypes";
export interface BackupRestoreViewModel {
filename: string;
partial: boolean;
include: Array<BackupSection>;
}