mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-25 02:46:39 +08:00
29 lines
468 B
TypeScript
29 lines
468 B
TypeScript
// 创建产品类型定义
|
|
export interface ProductFeature {
|
|
icon: string
|
|
title: string
|
|
description: string
|
|
}
|
|
|
|
export interface PricingPlan {
|
|
name: string
|
|
price: number
|
|
period: string
|
|
features: string[]
|
|
isPopular?: boolean
|
|
}
|
|
|
|
export interface Product {
|
|
id: string
|
|
name: string
|
|
title: string
|
|
description: string
|
|
highlight: string
|
|
features: ProductFeature[]
|
|
pricing: PricingPlan[]
|
|
faqs: {
|
|
question: string
|
|
answer: string
|
|
}[]
|
|
}
|