Command.cs 373 B

123456789101112131415
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Admin.Store.GameLanguage.Save;
  4. public sealed record Command(IReadOnlyList<Command.Row> Items) : ICommand<Result<Response>>
  5. {
  6. public sealed record Row(
  7. int? ID,
  8. string KorName,
  9. string? EngName,
  10. int Order,
  11. bool IsActive
  12. );
  13. }