Command.cs 265 B

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