From 9d20ba1987d4254a2a54855f77fcd6e2e9aeadcf Mon Sep 17 00:00:00 2001 From: TekH Date: Wed, 10 Jun 2026 12:38:38 +0200 Subject: [PATCH] Rename `ElementId` to `Id` in `Signature` record The `ElementId` property in the `Signature` record was renamed to `Id`. This change simplifies the property name, making it more concise and aligning with standard naming conventions or domain terminology. --- EnvelopeGenerator.Application/Common/Dto/Signature.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EnvelopeGenerator.Application/Common/Dto/Signature.cs b/EnvelopeGenerator.Application/Common/Dto/Signature.cs index 2462c628..9a934934 100644 --- a/EnvelopeGenerator.Application/Common/Dto/Signature.cs +++ b/EnvelopeGenerator.Application/Common/Dto/Signature.cs @@ -15,7 +15,7 @@ public sealed record Signature /// /// TBDD_DOCUMENT_RECEIVER_ELEMENT.ID - identifies the specific signature field on the PDF page. /// - public required int ElementId { get; init; } + public required int Id { get; init; } /// /// Base64-encoded data URL of the signature image.