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