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
|
|
}
|