using Application.Abstractions.Messaging; using SharedKernel.Results; namespace Application.Features.Api.Stocks.GetHistory; public sealed record Query( string Code, int Page, ushort PerPage, DateOnly? From = null, DateOnly? To = null ) : IQuery>;