diff --git a/EnvelopeGenerator.Application/Common/Dto/AnnotationDto.cs b/EnvelopeGenerator.Application/Common/Dto/AnnotationDto.cs
index 42b96386..28a3bce4 100644
--- a/EnvelopeGenerator.Application/Common/Dto/AnnotationDto.cs
+++ b/EnvelopeGenerator.Application/Common/Dto/AnnotationDto.cs
@@ -24,6 +24,26 @@ public record AnnotationCreateDto
///
///
public string Type { get; init; } = null!;
+
+ ///
+ ///
+ ///
+ public double? X { get; init; }
+
+ ///
+ ///
+ ///
+ public double? Y { get; init; }
+
+ ///
+ ///
+ ///
+ public double? WIDTH { get; init; }
+
+ ///
+ ///
+ ///
+ public double? HEIGHT { get; init; }
}
///