7 lines
183 B
TypeScript
7 lines
183 B
TypeScript
import type { BackupSection } from "../../../types/backupTypes";
|
|
|
|
export interface BackupRestoreViewModel {
|
|
filename: string;
|
|
partial: boolean;
|
|
include: Array<BackupSection>;
|
|
}
|