using Application.Abstractions.Messaging; using Domain.Entities.Forum.ValueObject; using SharedKernel.Results; namespace Application.Features.Api.Forum.CommentReaction.Toggle; public sealed record Command( int MemberID, int CommentID, Reaction Reaction ) : ICommand;