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; }