Response.cs 399 B

12345678910111213141516
  1. namespace Application.Features.Api.Paper.GetPositions;
  2. public sealed record Response(List<Response.Row> List)
  3. {
  4. public sealed record Row(
  5. string StockCode,
  6. string StockName,
  7. int Quantity,
  8. int ReservedQuantity,
  9. decimal AvgPrice,
  10. decimal? LatestClose,
  11. decimal MarketValue,
  12. decimal UnrealizedPnL,
  13. int UnrealizedPnLBp
  14. );
  15. }