import { FloorListItem } from './floor.interfaces'; export interface BuildingListItem { id: number; displayName: string; address: string; color: string; createdAt: string; updatedAt: string; } export interface BuildingResponse extends BuildingListItem { floors: FloorListItem[]; }