| 123456789101112131415 |
- using Application.Abstractions.Messaging;
- using SharedKernel.Results;
- namespace Application.Features.Admin.Store.GameLanguage.Save;
- public sealed record Command(IReadOnlyList<Command.Row> Items) : ICommand<Result<Response>>
- {
- public sealed record Row(
- int? ID,
- string KorName,
- string? EngName,
- int Order,
- bool IsActive
- );
- }
|