Command.cs 273 B

123456789101112
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Admin.Faq.Item.Create;
  4. public sealed record Command(
  5. int CategoryID,
  6. string Question,
  7. string? Answer,
  8. short Order,
  9. bool IsActive
  10. ) : ICommand<Result>;