Command.cs 234 B

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