Some checks failed
Auto Tag Develop / tag (push) Has been cancelled
| Numéro du ticket | Titre du ticket | |------------------|-----------------| | #278 | Plan du site | ## Description de la PR [#278] Plan du site ## Modification du .env ## Check list - [ ] Pas de régression - [x] TU/TI/TF rédigée - [x] TU/TI/TF OK - [ ] CHANGELOG modifié Co-authored-by: Matteo <matteo@yuno.malio.fr> Reviewed-on: #33 Co-authored-by: tristan <tristan@yuno.malio.fr> Co-committed-by: tristan <tristan@yuno.malio.fr>
12 lines
293 B
TypeScript
12 lines
293 B
TypeScript
import type { BuildingCaseData } from '~/services/dto/building-case-data'
|
|
|
|
export interface BuildingCasePositionData {
|
|
id: number
|
|
x: number | null
|
|
y: number | null
|
|
w: number | null
|
|
h: number | null
|
|
renderOrder: string | null
|
|
buildingCase: BuildingCaseData | null
|
|
}
|