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