Command.cs 304 B

123456789101112
  1. using Application.Abstractions.Messaging;
  2. using Domain.Entities.Forum.ValueObject;
  3. using SharedKernel.Results;
  4. namespace Application.Features.Api.Forum.CommentReport.Create;
  5. public sealed record Command(
  6. int MemberID,
  7. int CommentID,
  8. ReportType Type,
  9. string? Reason
  10. ) : ICommand<Result>;