| 12345678910111213 |
- using Application.Abstractions.Messaging;
- using SharedKernel.Results;
- namespace Application.Features.Admin.Forum.Board.Create;
- public sealed record Command(
- int BoardGroupID,
- string Code,
- string Name,
- short Order,
- bool IsSearch,
- bool IsActive
- ) : ICommand<Result>;
|