All checks were successful
Auto Tag Develop / tag (push) Successful in 6s
| Numéro du ticket | Titre du ticket | |------------------|-----------------| | | | ## Description de la PR ## Modification du .env ## Check list - [x] Pas de régression - [x] TU/TI/TF rédigée - [x] TU/TI/TF OK - [x] CHANGELOG modifié Reviewed-on: #42 Co-authored-by: tristan <tristan@yuno.malio.fr> Co-committed-by: tristan <tristan@yuno.malio.fr>
11 lines
325 B
TypeScript
11 lines
325 B
TypeScript
import type { BuildingLayoutData } from '~/services/dto/building-layout-data'
|
|
import type { BuildingCaseData } from '~/services/dto/building-case-data'
|
|
|
|
export interface BuildingData {
|
|
id: number
|
|
label: string
|
|
code: string
|
|
layouts?: BuildingLayoutData[] | null
|
|
buildingCases?: BuildingCaseData[] | null
|
|
}
|