hrms-admin/src/modules/04_system/interface/response/Main.ts

9 lines
120 B
TypeScript
Raw Normal View History

interface DataBackup {
id: string;
name: string;
createAt: Date;
status: string;
}
export type { DataBackup };