Command.cs 338 B

123456789101112131415
  1. using MediatR;
  2. namespace Application.Features.Faq.Category.Save
  3. {
  4. public sealed record Command(IReadOnlyList<Command.Row> Items) : IRequest<Response>
  5. {
  6. public sealed record Row(
  7. int? ID,
  8. string Code,
  9. string Subject,
  10. short Order,
  11. bool IsActive
  12. );
  13. }
  14. }