import { ProductVariantType } from '../enum/product-variant.enum';
export interface IProductVariantCreate {
    Name: string;
    Description: string;
    SKU: string;
    Size?: string;
    Colour?: string;
    StockLowAlertLevel: number;
    StockReorderLevel: number;
    BufferStockLevel: number;
    Type: ProductVariantType;
    Level: number;
    ParentId?: string;
    MinWeight?: number;
    MaxWeight?: number;
    MinWidth?: number;
    MaxWidth?: number;
    MinHeight?: number;
    MaxHeight?: number;
    MinLength?: number;
    MaxLength?: number;
}
