Query.cs 451 B

123456789
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Api.Stocks.GetMacroIndicators;
  3. /// <summary>
  4. /// 거시경제지표 조회 — 지표코드(들) 별 시계열 + 최신값 (KOSIS 수집, 익명). 대시보드용.
  5. /// Codes 비면 전체 지표. Limit = 지표당 반환할 최근 시점 수 (0 이하는 기본값 적용).
  6. /// </summary>
  7. public sealed record Query(IReadOnlyList<string> Codes, int Limit) : IQuery<Response>;