Response.cs 321 B

1234567891011121314
  1. namespace Application.Features.Api.Forum.StockBoard.Trending;
  2. public sealed record Response(List<Response.Row> List)
  3. {
  4. public sealed record Row(
  5. int Rank,
  6. string StockCode,
  7. string? StockName,
  8. int? ClosePrice,
  9. decimal? ChangeRate,
  10. int Posts,
  11. int Score
  12. );
  13. }