Response.cs 412 B

12345678910111213141516171819
  1. namespace Application.Features.Api.News.GetArticle;
  2. public sealed record Response(
  3. int ID,
  4. int RssFeedSourceID,
  5. string FeedSourceName,
  6. string Title,
  7. string? Link,
  8. string? Guid,
  9. string? Author,
  10. string? Description,
  11. string? Content,
  12. string? ImageUrl,
  13. string? SourceName,
  14. string? Categories,
  15. int CommentCount,
  16. DateTime? PublishedAt,
  17. DateTime CreatedAt
  18. );