| 12345678910 |
- using Application.Abstractions.Messaging;
- namespace Application.Features.Api.Stocks.GetEsgSecurities;
- /// <summary>ESG 증권상품 목록 조회 — 지정일(미지정 시 최신 거래일) 페이징 (익명).</summary>
- public sealed record Query(
- DateOnly? Date,
- int Page,
- ushort PerPage
- ) : IQuery<Response>;
|