Response.cs 444 B

1234567891011121314151617
  1. namespace Application.Features.Admin.Crypto.News.Source.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 Name,
  9. string Url,
  10. string? Description,
  11. int IntervalMinutes,
  12. bool IsActive,
  13. DateTime? LastFetchedAt,
  14. DateTime CreatedAt
  15. );
  16. }
  17. }