/** @description Basic structure for dimensions */
export class Dimensions {
  length?: number;
  width?: number;
  height?: number;
}
