using Application.Abstractions.Messaging; using SharedKernel.Results; namespace Application.Features.Api.MyPage.GetPosts; public sealed record Query( int MemberID, int Page, int PerPage ) : IQuery<Result<Response>>;