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