| 1234567891011121314151617181920 |
- using Application.Abstractions.Messaging;
- namespace Application.Features.Api.Forum.Post.Search;
- public sealed record Query(
- int? BoardID,
- int? BoardPrefixID,
- int? Search,
- string? Keyword,
- string? StartAt,
- string? EndAt,
- int? Sort,
- bool? IsNotice,
- bool? IsSecret,
- bool? IsReply,
- bool? IsDeleted,
- int Page,
- ushort PerPage,
- int? MemberID
- ) : IQuery<Response>;
|