| 1234567891011121314 |
- namespace Application.Features.Api.Forum.StockBoard.Trending;
- public sealed record Response(List<Response.Row> List)
- {
- public sealed record Row(
- int Rank,
- string StockCode,
- string? StockName,
- int? ClosePrice,
- decimal? ChangeRate,
- int Posts,
- int Score
- );
- }
|