Response.cs 416 B

12345678910111213141516
  1. namespace Application.Features.Admin.Crypto.News.Article.Search
  2. {
  3. public sealed record Response(int Total, List<Response.Row> List)
  4. {
  5. public sealed record Row(
  6. int Num,
  7. int ID,
  8. string FeedSourceName,
  9. string Title,
  10. string? Author,
  11. string? Link,
  12. DateTime? PublishedAt,
  13. DateTime CreatedAt
  14. );
  15. }
  16. }