Query.cs 423 B

123456789101112
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.Stocks.GetDividendCalendar;
  4. /// <summary>기간(권리기준일 from~to) 배당 일정 목록 — DividendSchedule 기반. from/to 미지정 시 기본 범위 없이 최신순.</summary>
  5. public sealed record Query(
  6. DateOnly? From,
  7. DateOnly? To,
  8. int Page,
  9. ushort PerPage
  10. ) : IQuery<Result<Response>>;