namespace Application.Features.Api.Stocks.GetLendingHistory; public sealed class Response { public required string Isin { get; init; } public int Total { get; init; } public required IReadOnlyList List { get; init; } public sealed class Row { /// 기준일 (STD_DT) public DateOnly StdDt { get; init; } /// 대차잔고주수 (SLB_TR_REM_QTY) public long? LendingBalanceQty { get; init; } /// 대차체결량 (MATC_QTY) public long? MatchedQty { get; init; } /// 대차상환량 (RED_QTY) public long? RedeemedQty { get; init; } /// 일일거래량 (TR_QTY) public long? TradeQty { get; init; } /// 외국인 대여잔고비율 % (FRINER_LEND_REM_RATIO) public decimal? ForeignLendRatio { get; init; } /// 내국인 대여잔고비율 % (NATIVE_LEND_REM_RATIO) public decimal? NativeLendRatio { get; init; } /// 외국인 차입잔고비율 % (FRINER_BRW_REM_RATIO) public decimal? ForeignBorrowRatio { get; init; } /// 내국인 차입잔고비율 % (NATIVE_BRW_REM_RATIO) public decimal? NativeBorrowRatio { get; init; } } }