mc-manager/src/types/backup.ts
2026-02-07 12:20:12 -08:00

16 lines
316 B
TypeScript

export type BackupType = 'manual' | 'scheduled'
export type BackupStatus = 'completed' | 'in_progress' | 'failed'
export interface Backup {
_id: string
serverId: string
filename: string
filePath: string
fileSize: number
type: BackupType
status: BackupStatus
createdBy: string
createdAt: string
}