using Application.Abstractions.Messaging;
namespace Application.Features.Api.Stocks.GetSriBonds;
///
/// 사회책임투자채권 목록 조회 — 지정일(미지정 시 최신 스냅샷일) 페이징 (익명).
/// SriBondType = SRI 채권종류(SRI_BND_TP_NM: 녹색채권/사회적채권/지속가능채권) 필터,
/// BondType = 채권유형(BND_TP_NM: 회사채 등) 필터 — 서로 다른 컬럼이므로 별도 파라미터.
///
public sealed record Query(
DateOnly? Date,
string? SriBondType,
string? BondType,
int Page,
ushort PerPage
) : IQuery;