Response.cs 292 B

12345678910111213
  1. namespace Application.Features.Api.News.GetSources;
  2. public sealed record Response(List<Response.Row> Sources)
  3. {
  4. public sealed record Row(
  5. int ID,
  6. string Name,
  7. string Url,
  8. string? Description,
  9. bool IsActive,
  10. DateTime? LastFetchedAt
  11. );
  12. }