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