11 lines
168 B
TypeScript
11 lines
168 B
TypeScript
|
|
export type ProductSku = {
|
||
|
|
id: number
|
||
|
|
code: string
|
||
|
|
name: string
|
||
|
|
price: string
|
||
|
|
price_min: string
|
||
|
|
product_id: number
|
||
|
|
discount_id: number
|
||
|
|
status: number
|
||
|
|
}
|