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