Response.cs 469 B

123456789101112131415161718
  1. namespace Application.Features.Api.Crypto.Ticker.GetAll;
  2. public sealed record Response(IReadOnlyList<Response.Row> Tickers)
  3. {
  4. public sealed record Row(
  5. string Symbol,
  6. string KorName,
  7. string EngName,
  8. string? LogoImage,
  9. decimal TradePrice,
  10. string Change,
  11. decimal SignedChangePrice,
  12. decimal SignedChangeRate,
  13. decimal AccTradePrice24h,
  14. bool IsFeatured,
  15. short DisplayOrder
  16. );
  17. }