- using Application.Abstractions.Messaging;
- using SharedKernel.Results;
- namespace Application.Features.Api.Forum.PostCheer.Get;
- /// <summary>글의 응원 합계 + 최근 N건 조회 — D3 M4 (익명 허용).</summary>
- public sealed record Query(
- int PostID,
- int Take
- ) : IQuery<Result<Response>>;
|