From 0818d7d9eb598046c0d68c591f551cbefed2ba6a Mon Sep 17 00:00:00 2001 From: TekH Date: Tue, 28 Oct 2025 14:14:09 +0100 Subject: [PATCH] feat(dto): add position and size properties to AnnotationCreateDto --- .../Common/Dto/AnnotationDto.cs | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) 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; } } ///