using Application.Abstractions.Messaging; using SharedKernel.Results; namespace Application.Features.Api.Forum.Post.Get; public sealed record Query(int ID, int? MemberID = null, string? IpAddress = null) : IQuery<Result<Response>>;