fix(Envelope): remove farmework condition of tfa enabled

This commit is contained in:
2025-08-20 17:21:19 +02:00
parent d8200993af
commit e64ac4b5e7
6 changed files with 16 additions and 13 deletions

View File

@@ -125,6 +125,12 @@ public class Envelope
[ForeignKey("UserId")]
public User User { get; set; }
[Column("TFA_ENABLED")]
public bool TfaEnabled { get; set; }
#if NETFRAMEWORK
= false;
#endif
[ForeignKey("EnvelopeTypeId")]
public virtual EnvelopeType
#if NET
@@ -139,9 +145,6 @@ public class Envelope
[NotMapped]
public bool IsAlreadySent => Status > (int)Constants.EnvelopeStatus.EnvelopeSaved;
[NotMapped]
public bool TFA_Enabled { get; set; } = false;
[NotMapped]
public byte[] DOC_RESULT { get; set; }
#endif