| 12345678910111213141516 |
- namespace Application.Features.Admin.Crypto.News.Article.Search
- {
- public sealed record Response(int Total, List<Response.Row> List)
- {
- public sealed record Row(
- int Num,
- int ID,
- string FeedSourceName,
- string Title,
- string? Author,
- string? Link,
- DateTime? PublishedAt,
- DateTime CreatedAt
- );
- }
- }
|