using Application.Abstractions.Messaging; namespace Application.Features.Faq.Item.Create { public sealed record Command( int CategoryID, string Question, string? Answer, short Order, bool IsActive ) : ICommand; }