Command.cs 259 B

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