Command.cs 339 B

1234567891011121314
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Forum.BoardGroup.Save
  3. {
  4. public sealed record Command(IReadOnlyList<Command.Row> Items) : ICommand<Response>
  5. {
  6. public sealed record Row(
  7. int? ID,
  8. string Code,
  9. string Name,
  10. short Order
  11. );
  12. }
  13. }