Command.cs 237 B

1234567891011
  1. using Application.Abstractions.Messaging;
  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. ) : ICommand;
  10. }