Command.cs 210 B

1234567891011
  1. using MediatR;
  2. namespace Application.Features.Document.Create
  3. {
  4. public sealed record Command(
  5. string Code,
  6. string Subject,
  7. string? Content,
  8. bool IsActive
  9. ) : IRequest;
  10. }