using Application.Abstractions.Messaging; using SharedKernel.Results; using Microsoft.AspNetCore.Http; namespace Application.Features.Api.Forum.Post.Create; public sealed record Command( int MemberID, int BoardID, int? BoardPrefixID, string Subject, string Content, bool IsSecret, bool IsNotice, bool IsSpeaker, List? Tags, List? Images, List? Medias, List? Files ) : ICommand>;