Files
admin/src/models/product.ts

13 lines
233 B
TypeScript
Raw Normal View History

import type { Model } from "./base/model"
import type { ProductSku } from "./product_sku"
export type Product = Model & {
code: string
name: string
description?: string
sort: number
status: number
skus?: ProductSku[]
}