| 1234567891011121314 |
- using Application.Abstractions.Messaging;
- using SharedKernel.Results;
- namespace Application.Features.Admin.Forum.BoardGroup.Save;
- public sealed record Command(IReadOnlyList<Command.Row> Items) : ICommand<Result<Response>>
- {
- public sealed record Row(
- int? ID,
- string Code,
- string Name,
- short Order
- );
- }
|