Command.cs 310 B

12345678910111213
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Admin.Popup.Position.Save;
  3. public sealed record Command(IReadOnlyList<Command.Row> Items) : ICommand<Response>
  4. {
  5. public sealed record Row(
  6. int? ID,
  7. string Code,
  8. string Subject,
  9. bool IsActive
  10. );
  11. }