Command.cs 248 B

1234567891011
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.Forum.Comment.Update;
  4. public sealed record Command(
  5. int ID,
  6. int MemberID,
  7. string Content,
  8. bool IsSecret
  9. ) : ICommand<Result>;