Response.cs 603 B

1234567891011121314151617181920212223
  1. namespace Application.Features.Api.Crypto.Trade.GetLive;
  2. public sealed record Response(Response.TradeItem? Trade)
  3. {
  4. public sealed record TradeItem(
  5. decimal TradePrice,
  6. decimal TradeVolume,
  7. string AskBid,
  8. decimal PrevClosingPrice,
  9. string Change,
  10. decimal ChangePrice,
  11. string TradeDate,
  12. string TradeTime,
  13. long TradeTimestamp,
  14. long SequentialId,
  15. long Timestamp,
  16. string StreamType,
  17. decimal BestAskPrice,
  18. decimal BestAskSize,
  19. decimal BestBidPrice,
  20. decimal BestBidSize
  21. );
  22. }