feat(division): create handler for division position

This commit is contained in:
riefive
2025-09-30 09:30:41 +07:00
parent 70a6e60769
commit 18eaef2e37
4 changed files with 116 additions and 16 deletions
+6
View File
@@ -2,3 +2,9 @@ export interface Division {
code: string
name: string
}
export interface DivisionPosition {
code: string
name: string
division_id: number
}