using Application.Abstractions.Messaging; using Domain.Entities.Forum.ValueObject; using SharedKernel.Results; namespace Application.Features.Api.Forum.PostReport.Create; public sealed record Command( int MemberID, int PostID, ReportType Type, string? Reason ) : ICommand;