fix(Envelope): Entfernen das Attribut „NotMapped“.

This commit is contained in:
tekh 2025-08-19 09:27:27 +02:00
parent b8c00884a9
commit 412f19547f
2 changed files with 2 additions and 3 deletions

View File

@ -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<EnvelopeDocument> Documents { get; set; } = new List<EnvelopeDocument>();
// TODO: * Check the Form App and remove the default value
[NotMapped]
public List<EnvelopeHistory> History { get; set; } = new List<EnvelopeHistory>();
// TODO: * Check the Form App and remove the default value

View File

@ -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<DocumentReceiverElement> Elements { get; set; } = new List<DocumentReceiverElement>();
// TODO: * Check the Form App and remove the default value
[NotMapped]
public string FileNameOriginal { get; set; }