UNPKG

pl4y-data-library

Version:

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

10 lines (9 loc) 245 B
import { StockLocation } from "../../../enums/stock-location.enum"; export declare class StockTransferDto { id?: string; productId: string; from: StockLocation; to: StockLocation; quantity: number; transferredAt: Date; }