| 12345678910111213 |
- using Application.Abstractions.Messaging;
- namespace Application.Features.Admin.Popup.Position.Save;
- public sealed record Command(IReadOnlyList<Command.Row> Items) : ICommand<Response>
- {
- public sealed record Row(
- int? ID,
- string Code,
- string Subject,
- bool IsActive
- );
- }
|