Command.cs 277 B

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