| 12345678910 |
- using Application.Abstractions.Messaging;
- namespace Application.Features.Api.Stocks.GetDisclosures;
- /// <summary>전자공시(DART) 최신 공시 목록 — corpCls(법인구분 Y/K/N/E) 선택 필터 + 접수일 내림차순 페이징 (익명).</summary>
- public sealed record Query(
- string? CorpCls,
- int Page,
- ushort PerPage
- ) : IQuery<Response>;
|