ff-admin/src/viewmodels/admin/management/backup.models.ts

9 lines
205 B
TypeScript
Raw Normal View History

2025-02-02 16:37:46 +01:00
import type { BackupSection } from "../../../types/backupTypes";
export interface BackupRestoreViewModel {
filename: string;
partial: boolean;
include: Array<BackupSection>;
2025-02-03 11:03:38 +01:00
overwrite: boolean;
2025-02-02 16:37:46 +01:00
}