Query.cs 233 B

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