UNPKG

@tomei/product

Version:

NestJS package for product module

33 lines (31 loc) 677 B
import { YN } from '../enum/yn.enum'; import { ProductVariantStatus, ProductVariantType, } from '../enum/product-variant.enum'; export class IProductVariantAttr { VariantId: string; ProductId: string; Name: string; Description: string; SKU: string; Size?: string; Colour?: string; Type: ProductVariantType; Level: number; ParentId?: string; MinWeight?: number; MaxWeight?: number; MinWidth?: number; MaxWidth?: number; MinHeight?: number; MaxHeight?: number; MinLength?: number; MaxLength?: number; Status: ProductVariantStatus; CreatedById: string; CreatedAt: Date; UpdatedById: string; UpdatedAt: Date; UpdatedSSYN: YN; }