| 1234567891011121314 |
- using Application.Abstractions.Messaging;
- namespace Application.Features.Admin.Forum.Board.Update
- {
- public sealed record Command(
- int ID,
- int BoardGroupID,
- string Code,
- string Name,
- short Order,
- bool IsSearch,
- bool IsActive
- ) : ICommand;
- }
|