| 123456789101112 |
- using Application.Abstractions.Messaging;
- using SharedKernel.Results;
- namespace Application.Features.Admin.Faq.Item.Create;
- public sealed record Command(
- int CategoryID,
- string Question,
- string? Answer,
- short Order,
- bool IsActive
- ) : ICommand<Result>;
|