| 12345678910111213141516 |
- namespace Application.Features.Api.Crypto.Orderbook.Get;
- public sealed record Response(
- decimal TotalAskSize,
- decimal TotalBidSize,
- IReadOnlyList<Response.Unit> Units,
- long Timestamp
- )
- {
- public sealed record Unit(
- decimal AskPrice,
- decimal BidPrice,
- decimal AskSize,
- decimal BidSize
- );
- }
|