Command.cs 261 B

123456789101112
  1. using Application.Abstractions.Messaging;
  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. ) : ICommand;
  11. }