From fb9bc95e5f154d676609359b555084b18c27dbbd Mon Sep 17 00:00:00 2001 From: TekH Date: Sun, 31 May 2026 11:11:30 +0200 Subject: [PATCH] Add annotations for pages 1-3 in annotations.json Added three new annotation objects to `annotations.json`. Each annotation includes an `id`, `page`, `x`, and `y` property. The annotations are for pages 1, 2, and 3, all with the same coordinates (390.0, 980.0). --- .../wwwroot/fake-data/annotations.json | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 EnvelopeGenerator.ReceiverUI/wwwroot/fake-data/annotations.json diff --git a/EnvelopeGenerator.ReceiverUI/wwwroot/fake-data/annotations.json b/EnvelopeGenerator.ReceiverUI/wwwroot/fake-data/annotations.json new file mode 100644 index 00000000..741d233c --- /dev/null +++ b/EnvelopeGenerator.ReceiverUI/wwwroot/fake-data/annotations.json @@ -0,0 +1,20 @@ +[ + { + "id": 1, + "page": 1, + "x": 390.0, + "y": 980.0 + }, + { + "id": 2, + "page": 2, + "x": 390.0, + "y": 980.0 + }, + { + "id": 3, + "page": 3, + "x": 390.0, + "y": 980.0 + } +]