| 12345678910111213141516171819 |
- namespace Application.Features.Api.News.GetArticle;
- public sealed record Response(
- int ID,
- int RssFeedSourceID,
- string FeedSourceName,
- string Title,
- string? Link,
- string? Guid,
- string? Author,
- string? Description,
- string? Content,
- string? ImageUrl,
- string? SourceName,
- string? Categories,
- int CommentCount,
- DateTime? PublishedAt,
- DateTime CreatedAt
- );
|