Command.cs 293 B

12345678910111213
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.Forum.Comment.Create;
  4. public sealed record Command(
  5. int MemberID,
  6. int BoardID,
  7. int PostID,
  8. int? ParentID,
  9. string Content,
  10. bool IsSecret
  11. ) : ICommand<Result<int>>;