| 123456789101112131415161718192021 |
- namespace Application.Features.Admin.Crypto.List.Search
- {
- public sealed record Response(int Total, List<Response.Row> List)
- {
- public sealed record Row(
- int Num,
- int ID,
- string Symbol,
- string KorName,
- string EngName,
- string? LogoImage,
- IReadOnlyList<string> CategoryNames,
- bool IsActive,
- bool IsWarning,
- bool IsNew,
- bool IsDelisted,
- DateTime? UpdatedAt,
- DateTime CreatedAt
- );
- }
- }
|