7 lines
119 B
TypeScript
7 lines
119 B
TypeScript
import type { Model } from "./base/model"
|
|
|
|
export type ProductDiscount = Model & {
|
|
name: string
|
|
discount: number
|
|
}
|