feat : plan du site (WIP)

This commit is contained in:
2026-02-19 16:23:58 +01:00
parent c52f22472d
commit 7d80795ae3
12 changed files with 764 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
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
}