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