From b9efc75d4f6bf32e858f0466c89408c2ebae158b Mon Sep 17 00:00:00 2001 From: TekH Date: Sat, 6 Jun 2026 18:25:46 +0200 Subject: [PATCH] Add nullable Annotations property to SignatureDto A new property `Annotations` of type `IEnumerable?` was added to the `SignatureDto` class. This property includes a getter and setter, allowing the class to manage a collection of annotations. The property is nullable, enabling it to hold a `null` value if no annotations are present. --- EnvelopeGenerator.Application/Common/Dto/SignatureDto.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/EnvelopeGenerator.Application/Common/Dto/SignatureDto.cs b/EnvelopeGenerator.Application/Common/Dto/SignatureDto.cs index f78d4896..1395b49d 100644 --- a/EnvelopeGenerator.Application/Common/Dto/SignatureDto.cs +++ b/EnvelopeGenerator.Application/Common/Dto/SignatureDto.cs @@ -93,4 +93,9 @@ public class SignatureDto : ISignature /// Gets or sets the left position of the element (in layout terms). /// public double Left => X; + + /// + /// + /// + public IEnumerable? Annotations { get; set; } } \ No newline at end of file