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.
This commit is contained in:
2026-06-10 12:38:38 +02:00
parent 66f7b6f5e1
commit 9d20ba1987

View File

@@ -15,7 +15,7 @@ public sealed record Signature
/// <summary> /// <summary>
/// TBDD_DOCUMENT_RECEIVER_ELEMENT.ID - identifies the specific signature field on the PDF page. /// TBDD_DOCUMENT_RECEIVER_ELEMENT.ID - identifies the specific signature field on the PDF page.
/// </summary> /// </summary>
public required int ElementId { get; init; } public required int Id { get; init; }
/// <summary> /// <summary>
/// Base64-encoded data URL of the signature image. /// Base64-encoded data URL of the signature image.