| 12345678910111213 |
- using Application.Abstractions.Messaging;
- using SharedKernel.Results;
- namespace Application.Features.Api.Forum.Comment.Create;
- public sealed record Command(
- int MemberID,
- int BoardID,
- int PostID,
- int? ParentID,
- string Content,
- bool IsSecret
- ) : ICommand<Result<int>>;
|