| 1234567891011121314151617181920 |
- using Application.Abstractions.Messaging;
- using Microsoft.AspNetCore.Http;
- using SharedKernel.Results;
- namespace Application.Features.Api.Forum.Post.Update;
- public sealed record Command(
- int ID,
- int MemberID,
- int? BoardPrefixID,
- string Subject,
- string Content,
- bool IsSecret,
- bool IsNotice,
- bool IsSpeaker,
- List<string>? Tags,
- List<IFormFile>? Images,
- List<string>? Medias,
- List<IFormFile>? Files
- ) : ICommand<Result>;
|