From 093e64de8182cb753beaf034dbde6791a25c18ec Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Thu, 20 Mar 2025 14:27:58 +0100 Subject: [PATCH] =?UTF-8?q?feat(Annotation):=20Hinzuf=C3=BCgen=20der=20Eig?= =?UTF-8?q?enschaft=20Name?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- EnvelopeGenerator.Web/Models/Annotation.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/EnvelopeGenerator.Web/Models/Annotation.cs b/EnvelopeGenerator.Web/Models/Annotation.cs index e3c21f28..cb08d806 100644 --- a/EnvelopeGenerator.Web/Models/Annotation.cs +++ b/EnvelopeGenerator.Web/Models/Annotation.cs @@ -2,8 +2,10 @@ namespace EnvelopeGenerator.Web.Models; -public class Annotation +public record Annotation { + public required string Name { get; init; } + #region Bound Annotation public string? HorBoundAnnotName { get; init; }