using Application.Abstractions.Messaging; using Microsoft.AspNetCore.Http; namespace Application.Features.Admin.Forum.Post.Create; public sealed record Command( int BoardID, int? BoardPrefixID, string Subject, string? Content, IFormFile? ThumbnailFile, List? Files, List? Tags, bool IsNotice, bool IsSecret, bool IsAnonymous ) : ICommand;