| 12345678910111213141516 |
- namespace Application.Features.Api.Paper.GetPositions;
- public sealed record Response(List<Response.Row> List)
- {
- public sealed record Row(
- string StockCode,
- string StockName,
- int Quantity,
- int ReservedQuantity,
- decimal AvgPrice,
- decimal? LatestClose,
- decimal MarketValue,
- decimal UnrealizedPnL,
- int UnrealizedPnLBp
- );
- }
|