From 412f19547f541bb37bfb05b8c096f00d37122904 Mon Sep 17 00:00:00 2001 From: TekH Date: Tue, 19 Aug 2025 09:27:27 +0200 Subject: [PATCH] =?UTF-8?q?fix(Envelope):=20Entfernen=20das=20Attribut=20?= =?UTF-8?q?=E2=80=9ENotMapped=E2=80=9C.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- EnvelopeGenerator.Domain/Entities/Envelope.cs | 2 -- EnvelopeGenerator.Domain/Entities/EnvelopeDocument.cs | 3 ++- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/EnvelopeGenerator.Domain/Entities/Envelope.cs b/EnvelopeGenerator.Domain/Entities/Envelope.cs index b03ebc58..e3637be6 100644 --- a/EnvelopeGenerator.Domain/Entities/Envelope.cs +++ b/EnvelopeGenerator.Domain/Entities/Envelope.cs @@ -138,11 +138,9 @@ 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 diff --git a/EnvelopeGenerator.Domain/Entities/EnvelopeDocument.cs b/EnvelopeGenerator.Domain/Entities/EnvelopeDocument.cs index ecfc3eec..ff40a90d 100644 --- a/EnvelopeGenerator.Domain/Entities/EnvelopeDocument.cs +++ b/EnvelopeGenerator.Domain/Entities/EnvelopeDocument.cs @@ -27,9 +27,10 @@ namespace EnvelopeGenerator.Domain.Entities [Column("BYTE_DATA", TypeName = "varbinary(max)")] public byte[] ByteData { get; set; } - // TODO: * Check the Form App and remove the default value public List Elements { get; set; } = new List(); + + // TODO: * Check the Form App and remove the default value [NotMapped] public string FileNameOriginal { get; set; }