fix(AnnotationCreateDto): rename WIDTH and HEIGHT properties to Width and Height in AnnotationCreateDto

This commit is contained in:
tekh 2025-10-28 14:42:14 +01:00
parent 0818d7d9eb
commit b9bb058137

View File

@ -38,12 +38,12 @@ public record AnnotationCreateDto
/// <summary>
///
/// </summary>
public double? WIDTH { get; init; }
public double? Width { get; init; }
/// <summary>
///
/// </summary>
public double? HEIGHT { get; init; }
public double? Height { get; init; }
}
/// <summary>