Query.cs 362 B

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