Query.cs 307 B

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