| 123456789101112 |
- using Application.Abstractions.Messaging;
- using SharedKernel.Results;
- namespace Application.Features.Api.Forum.Comment.List;
- public sealed record Query(
- int PostID,
- int? MemberID = null,
- int Page = 1,
- ushort PerPage = 20,
- int Sort = 0 // 0: 최신순(ID desc), 1: 인기순(Likes desc)
- ) : IQuery<Result<Response>>;
|