Command.cs 268 B

1234567891011
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.Feed.CreateComment;
  4. public sealed record Command(
  5. int PostID,
  6. int MemberID,
  7. int? ParentCommentID,
  8. string Content
  9. ) : ICommand<Result<Response>>;