refactor(DocResult): remove framework condition_

This commit is contained in:
2025-08-20 17:43:30 +02:00
parent e64ac4b5e7
commit 419f421d52
4 changed files with 13 additions and 7 deletions

View File

@@ -131,6 +131,15 @@ public class Envelope
= false;
#endif
[NotMapped]
[Column("DOC_RESULT")]
public byte[]
#if NET
?
#endif
DocResult
{ get; set; }
[ForeignKey("EnvelopeTypeId")]
public virtual EnvelopeType
#if NET
@@ -144,9 +153,6 @@ public class Envelope
[NotMapped]
public bool IsAlreadySent => Status > (int)Constants.EnvelopeStatus.EnvelopeSaved;
[NotMapped]
public byte[] DOC_RESULT { get; set; }
#endif
public List<EnvelopeDocument> Documents { get; set; }