feat (models): define employee and user data models

This commit is contained in:
Abizrh
2025-08-31 17:35:13 +07:00
parent 8f2623b15e
commit 1631a85204
2 changed files with 56 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
export interface User {
id: number
name: string
password: string
status_code: string
createdAt: string
updatedAt: string
}
export function genUser(): User {
return {
id: 0,
name: '',
password: '',
status_code: '',
createdAt: '',
updatedAt: '',
}
}