| 1234567891011 |
- using Application.Abstractions.Messaging;
- namespace Application.Features.Api.Stocks.GetSriBonds;
- /// <summary>사회책임투자채권 목록 조회 — 지정일(미지정 시 최신 스냅샷일) 페이징, 선택적 채권종류 필터 (익명).</summary>
- public sealed record Query(
- DateOnly? Date,
- string? BondType,
- int Page,
- ushort PerPage
- ) : IQuery<Response>;
|