feat(AnnotationParams): Aktualisiert, um Standardwerte in Annots.init zu setzen.

This commit is contained in:
Developer 02
2025-03-20 10:23:33 +01:00
parent cbd71aa2b9
commit 8a6a11c1bc
3 changed files with 36 additions and 5 deletions

View File

@@ -1,7 +1,13 @@
namespace EnvelopeGenerator.Web.Models;
public record Annotation(string? HorBoundAnnotName = null, string? VerBoundAnnotName = null)
public class Annotation
{
#region Bound Annotation
public string? HorBoundAnnotName { get; init; }
public string? VerBoundAnnotName { get; init; }
#endregion
#region Layout
internal double _marginX = default;