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