10 lines
266 B
TypeScript
10 lines
266 B
TypeScript
import type { BuildingCaseStatusData } from '~/services/dto/building-case-status-data'
|
|
|
|
export interface BuildingCaseData {
|
|
id: number
|
|
caseNumber: number | null
|
|
code: string | null
|
|
capacity: number | null
|
|
statut?: BuildingCaseStatusData | null
|
|
}
|