Command.cs 250 B

12345678910111213
  1. using MediatR;
  2. namespace Application.Features.Faq.Item.Update
  3. {
  4. public sealed record Command(
  5. int CategoryID,
  6. int ID,
  7. string Question,
  8. string? Answer,
  9. short Order,
  10. bool IsActive
  11. ) : IRequest;
  12. }