refactor(Entities.Annotation): rename it to ElementAnnotation to prevent name conflicts.

This commit is contained in:
2025-10-23 10:51:19 +02:00
parent d8cbdb0c65
commit 0e7b120ded
5 changed files with 8 additions and 8 deletions

View File

@@ -12,7 +12,7 @@ namespace EnvelopeGenerator.Domain.Entities
#endif
[Table("TBSIG_DOCUMENT_RECEIVER_ELEMENT_ANNOTATION")]
public class Annotation
public class ElementAnnotation
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]

View File

@@ -114,7 +114,7 @@ public class Signature : ISignature, IHasReceiver
#endif
Receiver { get; set; }
public virtual IEnumerable<Annotation>
public virtual IEnumerable<ElementAnnotation>
#if NET
?
#endif