diff --git a/EnvelopeGenerator.Application/Annotations/Commands/CreateAnnotationCommand.cs b/EnvelopeGenerator.Application/Annotations/Commands/CreateAnnotationCommand.cs
index 8cac0465..92be4426 100644
--- a/EnvelopeGenerator.Application/Annotations/Commands/CreateAnnotationCommand.cs
+++ b/EnvelopeGenerator.Application/Annotations/Commands/CreateAnnotationCommand.cs
@@ -6,4 +6,22 @@ namespace EnvelopeGenerator.Application.Annotations.Commands;
///
///
///
-public record CreateAnnotationCommand : EnvelopeReceiverQueryBase, IRequest;
\ No newline at end of file
+public record CreateAnnotationCommand : EnvelopeReceiverQueryBase, IRequest;
+
+///
+///
+///
+public class CreateAnnotationCommandHandler : IRequestHandler
+{
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public Task Handle(CreateAnnotationCommand request, CancellationToken cancel)
+ {
+ throw new NotImplementedException();
+ }
+}
\ No newline at end of file