Command.cs 226 B

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