jan/web/app/_models/ProductOutput.ts
2023-10-20 11:29:10 +07:00

9 lines
167 B
TypeScript

import { ItemProperties } from './ProductInput'
export interface ProductOutput {
slug: string
type: string
properties: ItemProperties[]
description: string
}