This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
eternos/frontend/style/components/product.ts
2025-02-22 20:12:27 +03:00

28 lines
406 B
TypeScript

export interface Review {
id: number
userId: number
rating: number
comment: string
createdAt: string
}
export interface Seller {
id: number
name: string
shopName: string
}
export interface Product {
id: number
title: string
price: number
description: string
image_url: string
category?: string
brand?: string
licenseType?: string
reviews?: Review[]
seller?: Seller
}