news.ts 429 B

1234567891011121314151617181920
  1. export interface NewsArticlesResponse {
  2. total: number;
  3. list: NewsArticle[];
  4. }
  5. export interface NewsArticle {
  6. id: number;
  7. rssFeedSourceID: number;
  8. feedSourceName: string;
  9. title: string;
  10. link: string | null;
  11. author: string | null;
  12. description: string | null;
  13. imageUrl: string | null;
  14. sourceName: string | null;
  15. categories: string | null;
  16. commentCount: number | null;
  17. publishedAt: string | null;
  18. createdAt: string;
  19. }