Command.cs 302 B

1234567891011121314
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Admin.Forum.Board.Update;
  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<Result>;