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

9 lines
198 B
TypeScript
Raw Normal View History

2025-05-07 09:20:32 +02:00
import type { BackupSection } from "@/types/backupTypes";
2025-02-02 16:37:46 +01:00
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
}