Command.cs 298 B

1234567891011121314
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Forum.Board.Update
  3. {
  4. public sealed record Command(
  5. int ID,
  6. int BoardGroupID,
  7. string Code,
  8. string Name,
  9. short Order,
  10. bool IsSearch,
  11. bool IsActive
  12. ) : ICommand;
  13. }