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