fix(Receiver): Entfernen Sie unnötige Eigenschaften und/oder verschieben Sie sie nach EnvelopeReceiver.

This commit is contained in:
2025-08-21 11:54:47 +02:00
parent 305422688e
commit e877000b14
3 changed files with 49 additions and 55 deletions

View File

@@ -161,9 +161,9 @@ public class Envelope
// TODO: * Check the Form App and remove the default value
[NotMapped]
public List<Receiver> Receivers { get; set; } = Enumerable.Empty<Receiver>().ToList();
public List<EnvelopeReceiver> Receivers { get; set; } = Enumerable.Empty<EnvelopeReceiver>().ToList();
#if NETFRAMEWORK
//#if NETFRAMEWORK
/// <summary>
/// Validates whether the receiver and document data are complete.
/// </summary>
@@ -182,7 +182,7 @@ public class Envelope
return errors;
}
#endif
//#endif
}
#if NETFRAMEWORK