| 123456789101112 |
- 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<Result<Response>>;
|