refactor(EnvelopeHistory): rename as History

This commit is contained in:
2025-09-09 18:57:38 +02:00
parent ae669d05e7
commit e8f2c868b1
26 changed files with 65 additions and 65 deletions

View File

@@ -19,7 +19,7 @@ public class Document
public Document()
{
#if NETFRAMEWORK
Elements = Enumerable.Empty<DocumentReceiverElement>().ToList();
Elements = Enumerable.Empty<Signature>().ToList();
#endif
}
@@ -35,7 +35,7 @@ public class Document
[Column("BYTE_DATA", TypeName = "varbinary(max)")]
public byte[] ByteData { get; set; }
public List<DocumentReceiverElement> Elements { get; set; }
public List<Signature> Elements { get; set; }
// TODO: * Check the Form App and remove the default value
[NotMapped]