mirror of
https://github.com/rmoren97/mc-manager.git
synced 2026-02-10 17:40:30 -08:00
16 lines
316 B
TypeScript
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
|
|
}
|