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