using Application.Abstractions.Messaging; using SharedKernel.Results; namespace Application.Features.Api.Feed.ToggleCommentLike; public sealed record Command(int CommentID, int MemberID) : ICommand<Result<Response>>;