using Application.Abstractions.Messaging; namespace Application.Features.Forum.Post.Search { public sealed record Query( int? BoardID, int? Search, string? Keyword, string? StartAt, string? EndAt, int? Sort, bool? IsNotice, bool? IsSecret, bool? IsReply, bool? IsDeleted, int PageNum, ushort PerPage ) : IQuery; }