| 123456789101112131415161718192021 |
- namespace Application.Features.Api.Stocks.GetHistory;
- public sealed class Response
- {
- public int Total { get; init; }
- public required IReadOnlyList<Row> List { get; init; }
- public sealed class Row
- {
- public DateOnly TradingDate { get; init; }
- public int Open { get; init; }
- public int High { get; init; }
- public int Low { get; init; }
- public int Close { get; init; }
- public long Volume { get; init; }
- public long TradingValue { get; init; }
- public int ChangeAmount { get; init; }
- public decimal ChangeRate { get; init; }
- public long? MarketCap { get; init; }
- }
- }
|