namespace Application.Features.Api.News.GetArticles; public sealed record Response(int Total, List 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 ); }