| 1 | import { Platform } from '../platform'; |
| 2 | |
| 3 | export interface ViralTitle { |
| 4 | _id: string; |
| 5 | platformId: Platform; |
| 6 | category: string; |
| 7 | title: string; |
| 8 | url: string; // 链接 |
| 9 | rank: number; // 排名 |
| 10 | engagement: number; // 互动量 |
| 11 | publishTime?: Date; |
| 12 | createTime: Date; |
| 13 | updateTime: Date; |
| 14 | timeType: string; |
| 15 | } |
| 16 |