/** * 常见问题视图模型 * 用于常见问题(/support/faqs)渲染的数据结构 */ export interface QuestionView { /** 唯一标识符 **/ id: number; /** 问题标题 **/ title: string; /** 问题内容 **/ content: string; }