using Application.Abstractions.Messaging; using Microsoft.AspNetCore.Http; 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, bool IsNotice, bool IsSpeaker, List? Tags, List? Images, List? Medias, List? Files ) : ICommand;