From 826844cf465987d6e764e59adcd9eccf16ccb270 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Fri, 18 Oct 2024 10:17:28 +0200 Subject: [PATCH] =?UTF-8?q?refactor(EnvelopeDocument):=20ByteDta-Eigenscha?= =?UTF-8?q?ft=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- EnvelopeGenerator.Domain/Entities/EnvelopeDocument.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/EnvelopeGenerator.Domain/Entities/EnvelopeDocument.cs b/EnvelopeGenerator.Domain/Entities/EnvelopeDocument.cs index f90ddce2..175d0115 100644 --- a/EnvelopeGenerator.Domain/Entities/EnvelopeDocument.cs +++ b/EnvelopeGenerator.Domain/Entities/EnvelopeDocument.cs @@ -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? Elements { get; set; } } } \ No newline at end of file