From 51d49d68bac59546a6115b88d2ed7e9f01e74400 Mon Sep 17 00:00:00 2001 From: TekH Date: Wed, 13 Aug 2025 16:07:26 +0200 Subject: [PATCH] =?UTF-8?q?fix(Envelope):=20F=C3=BCgen=20Nicht-relationale?= =?UTF-8?q?n=20Eigenschaften=20NotMapped-Attribute=20hinzu.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- EnvelopeGenerator.Domain/Entities/Envelope.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/EnvelopeGenerator.Domain/Entities/Envelope.cs b/EnvelopeGenerator.Domain/Entities/Envelope.cs index 4cafadf1..b03ebc58 100644 --- a/EnvelopeGenerator.Domain/Entities/Envelope.cs +++ b/EnvelopeGenerator.Domain/Entities/Envelope.cs @@ -138,12 +138,15 @@ namespace EnvelopeGenerator.Domain.Entities public byte[] DOC_RESULT { get; set; } // TODO: * Check the Form App and remove the default value + [NotMapped] public List Documents { get; set; } = new List(); // TODO: * Check the Form App and remove the default value + [NotMapped] public List History { get; set; } = new List(); // TODO: * Check the Form App and remove the default value + [NotMapped] public List Receivers { get; set; } = new List(); ///