12 lines
165 B
TypeScript
12 lines
165 B
TypeScript
export interface Division {
|
|
id?: number
|
|
code: string
|
|
name: string
|
|
}
|
|
|
|
export interface DivisionPosition {
|
|
code: string
|
|
name: string
|
|
division_id: number
|
|
}
|