Command.cs 288 B

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