UNPKG

pl4y-data-library

Version:

This library contains the dtos, enums, schemas, and other data objects needed in the pl4y ecosystem.

9 lines (8 loc) 231 B
import { StockStatus } from "../../../enums/stock-level-status.enum"; export declare class StockDTO { id?: string; productId: string; status: StockStatus; backroomQuantity: number; salesFloorQuantity: number; }