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