using Application.Abstractions.Messaging; using SharedKernel.Results; namespace Application.Features.Api.Forum.Post.Update; public sealed record Command( int ID, int MemberID, int? BoardPrefixID, string Subject, string Content, bool IsSecret ) : ICommand;