refactor(Common): Ersetzen Sie Envelope und Receiver durch Domain.Entities

This commit is contained in:
Developer 02
2025-05-22 14:13:08 +02:00
parent 502c607ebd
commit a38c2cd956
15 changed files with 35 additions and 166 deletions

View File

@@ -127,6 +127,12 @@ namespace EnvelopeGenerator.Domain.Entities
[NotMapped]
public string StatusTranslated => My.Resources.Model.ResourceManager.GetString(Status.ToString());
[NotMapped]
public bool TFA_Enabled { get; set; } = false;
[NotMapped]
public byte[] DOC_RESULT { get; set; }
// TODO: * Check the Form App and remove the default value
public IEnumerable<EnvelopeDocument> Documents { get; set; } = new List<EnvelopeDocument>();