using Application.Abstractions.Messaging; using SharedKernel.Results; namespace Application.Features.Api.Forum.Comment.Update; public sealed record Command( int ID, int MemberID, string Content, bool IsSecret ) : ICommand<Result>;