| 123456789101112131415161718192021222324 |
- namespace Application.Features.Admin.Crypto.List.Get
- {
- public sealed record Response(
- int ID,
- string Symbol,
- IReadOnlyList<string> Markets,
- string KorName,
- string EngName,
- string? LogoImage,
- string? Description,
- string? ContractAddress,
- string? WebsiteUrl,
- string? WhitepaperUrl,
- string? TwitterUrl,
- string? TelegramUrl,
- bool IsActive,
- bool IsWarning,
- bool IsNew,
- bool IsDelisted,
- IReadOnlyList<int> CategoryIDs,
- DateTime? UpdatedAt,
- DateTime CreatedAt
- );
- }
|