Command.cs 253 B

1234567891011
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Admin.Document.Create;
  4. public sealed record Command(
  5. string Code,
  6. string Subject,
  7. string? Content,
  8. bool IsActive
  9. ) : ICommand<Result>;