Query.cs 461 B

12345678910111213
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.Stocks.GetLendingHistory;
  4. /// <summary>종목(단축코드 or ISIN) 대차거래 시계열 — SecuritiesLending 을 Isin+기간(from~to)으로. 외국인 대여잔고비율 추이 차트용.</summary>
  5. public sealed record Query(
  6. string CodeOrIsin,
  7. DateOnly? From,
  8. DateOnly? To,
  9. int Page,
  10. ushort PerPage
  11. ) : IQuery<Result<Response>>;