From b9bb058137ca2cab8889d9de5c1e005dd4cf98e6 Mon Sep 17 00:00:00 2001 From: TekH Date: Tue, 28 Oct 2025 14:42:14 +0100 Subject: [PATCH] fix(AnnotationCreateDto): rename WIDTH and HEIGHT properties to Width and Height in AnnotationCreateDto --- EnvelopeGenerator.Application/Common/Dto/AnnotationDto.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EnvelopeGenerator.Application/Common/Dto/AnnotationDto.cs b/EnvelopeGenerator.Application/Common/Dto/AnnotationDto.cs index 28a3bce4..52ec400f 100644 --- a/EnvelopeGenerator.Application/Common/Dto/AnnotationDto.cs +++ b/EnvelopeGenerator.Application/Common/Dto/AnnotationDto.cs @@ -38,12 +38,12 @@ public record AnnotationCreateDto /// /// /// - public double? WIDTH { get; init; } + public double? Width { get; init; } /// /// /// - public double? HEIGHT { get; init; } + public double? Height { get; init; } } ///