namespace Application.Features.Admin.Crypto.List.Get { public sealed record Response( int ID, string Symbol, IReadOnlyList 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 CategoryIDs, DateTime? UpdatedAt, DateTime CreatedAt ); }