import { Defaults, Guid } from ".."; export class WarehouseLocation { publicId: Guid = Defaults.Guid; name: string = Defaults.String; locationCode: string = Defaults.String; locationInfo: LocationInfo = new LocationInfo(); locationStocks: LocationStock[] = []; } export class LocationInfo { height: number = Defaults.Number; width: number = Defaults.Number; depth: number = Defaults.Number; isCooled: boolean = Defaults.Boolean; locationType: LocationType = new LocationType(); } export class LocationType { publicId: Guid = Defaults.Guid; name: string = Defaults.String; description: string = Defaults.String; pickable: boolean = Defaults.Boolean; } export class LocationStock { articlePublicId: Guid = Defaults.Guid; locationPublicId: Guid = Defaults.Guid; amount: number = Defaults.Number; }