export declare class AddProductDto {
    orderId: number;
    productId: string;
    quantity: number;
}
