feat: add specialist, subspecialist and division handlers

This commit is contained in:
riefive
2025-09-29 13:53:18 +07:00
parent fa6b99c193
commit 70a6e60769
6 changed files with 209 additions and 0 deletions

No files matched your search

+4
View File
@@ -0,0 +1,4 @@
export interface Division {
code: string
name: string
}
+5
View File
@@ -0,0 +1,5 @@
export interface Subspecialist {
code: string
name: string
unit_id: number
}