add parking structure entity

This commit is contained in:
2025-04-08 16:20:15 -07:00
parent 6cd7d38bfd
commit 6782654564

View File

@@ -0,0 +1,9 @@
import { ICoordinates, IEntityWithId, IEntityWithOptionalTimestamp } from "./SharedEntities";
export interface IParkingStructure extends IEntityWithOptionalTimestamp, IEntityWithId {
address: string;
capacity: number;
spotsAvailable: number;
coordinates: ICoordinates;
name: string;
}