export interface EngineeringList { id?: string; projectId: string; name: string; maps: { PLAN: { mapId: string; url: string; }; BIM: { mapId: string; url: string; name: string; viewToken: string; status: string; fileId: number; }; }; locations?: { Pixel: { x: number; y: number; }; }; } export interface UpdateEngineering { id?: string; name?: string; bimMapId?: string; planMapId?: string; locations?: { Pixel: { x: number; y: number; }; }; } export interface EngineeringImg { _tenantId: string; _projectId: string; modelType: string; name: string; fileName: string; status: string; mapInfo: { url: string; }; } export interface MapsImgs { planMaps: ImgInfo[]; bimMaps: ImgInfo[]; } export interface ImgInfo { name: string; mapId: string; }