convert csrfToken to get method

This commit is contained in:
2025-09-09 18:11:14 +02:00
parent 1ac2a476d2
commit 207bc8bcbd
4 changed files with 16 additions and 4 deletions

View File

@@ -82,4 +82,14 @@ public class DocumentReceiverElementDto
/// Gets or sets the timestamp when the element was last changed, if applicable.
/// </summary>
public DateTime? ChangedWhen { get; set; }
/// <summary>
/// Gets or sets the top position of the element (in layout terms).
/// </summary>
public double Top => Y;
/// <summary>
/// Gets or sets the left position of the element (in layout terms).
/// </summary>
public double Left => X;
}