| 123456789101112131415161718 |
- namespace Application.Features.Api.Crypto.Ticker.GetAll;
- public sealed record Response(IReadOnlyList<Response.Row> Tickers)
- {
- public sealed record Row(
- string Symbol,
- string KorName,
- string EngName,
- string? LogoImage,
- decimal TradePrice,
- string Change,
- decimal SignedChangePrice,
- decimal SignedChangeRate,
- decimal AccTradePrice24h,
- bool IsFeatured,
- short DisplayOrder
- );
- }
|