| 1234567891011121314151617 |
- namespace Application.Features.Admin.Crypto.News.Source.Search
- {
- public sealed record Response(int Total, List<Response.Row> List)
- {
- public sealed record Row(
- int Num,
- int ID,
- string Name,
- string Url,
- string? Description,
- int IntervalMinutes,
- bool IsActive,
- DateTime? LastFetchedAt,
- DateTime CreatedAt
- );
- }
- }
|