feat(ClientCoefficient): Erstellt, um die Dimensionen für den Kunden bis zu einem gewissen Grad zu erhöhen

This commit is contained in:
Developer 02 2025-03-21 12:01:42 +01:00
parent eb024acfa7
commit 80e1e7dcf3

View File

@ -101,6 +101,11 @@ public record Annotation
if (_height == default && value.Height != default) if (_height == default && value.Height != default)
_height = value.Height * HeightRatio; _height = value.Height * HeightRatio;
ClientCoefficient = value.ClientCoefficient;
} }
} }
[JsonIgnore]
public double ClientCoefficient { get; set; } = 1;
}; };