| 1234567891011121314151617181920 |
- export interface NewsArticlesResponse {
- total: number;
- list: NewsArticle[];
- }
- export interface NewsArticle {
- id: number;
- rssFeedSourceID: number;
- feedSourceName: string;
- title: string;
- link: string | null;
- author: string | null;
- description: string | null;
- imageUrl: string | null;
- sourceName: string | null;
- categories: string | null;
- commentCount: number | null;
- publishedAt: string | null;
- createdAt: string;
- }
|