Files
psp_api/src/product-info/dto/update-product-info.dto.ts
T

10 lines
178 B
TypeScript
Raw Normal View History

export class UpdateProductInfoDto {
name?: string
description?: string
productType?: string
metaData?: any
brandId?: number
categoryId?: number
vendorId?: number
}