- namespace Application.Features.Api.Stocks.GetQuotes;
- public sealed class Response
- {
- public required IReadOnlyList<Row> List { get; init; }
- public sealed class Row
- {
- public required string Code { get; init; }
- public int? ClosePrice { get; init; }
- public decimal? ChangeRate { get; init; }
- }
- }
|