using Application.Abstractions.Messaging; using SharedKernel.Results; namespace Application.Features.Admin.Document.Create; public sealed record Command( string Code, string Subject, string? Content, bool IsActive ) : ICommand;