refactor(EnvelopeDocument): ByteDta-Eigenschaft hinzugefügt

This commit is contained in:
Developer 02 2024-10-18 10:17:28 +02:00
parent 39cff26f2d
commit 826844cf46

View File

@ -31,6 +31,9 @@ namespace EnvelopeGenerator.Domain.Entities
[Column("FILENAME_ORIGINAL", TypeName = "nvarchar(256)")]
public required string FilenameOriginal { get; set; }
[Column("BYTE_DATA", TypeName = "varbinary(max)")]
public byte[]? ByteDta { get; init; }
public IEnumerable<DocumentReceiverElement>? Elements { get; set; }
}
}