feat(unit): add unit and installation service models

This commit is contained in:
riefive
2025-09-29 13:20:45 +07:00
parent 436af7e565
commit 050f8964ef
7 changed files with 236 additions and 10 deletions
+5
View File
@@ -0,0 +1,5 @@
export interface Installation {
code: string
name: string
encounterClass_code: string
}
+5
View File
@@ -0,0 +1,5 @@
export interface Unit {
code: string
name: string
installation: string | number
}