| 1234567891011121314151617181920 |
- namespace Application.Features.Api.News.GetArticles;
- public sealed record Response(int Total, List<Response.Row> List)
- {
- public sealed record Row(
- int ID,
- int RssFeedSourceID,
- string FeedSourceName,
- string Title,
- string? Link,
- string? Author,
- string? Description,
- string? ImageUrl,
- string? SourceName,
- string? Categories,
- int CommentCount,
- DateTime? PublishedAt,
- DateTime CreatedAt
- );
- }
|