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