Refactor AnnotationCreateDto and update appsettings.json

Refactored the `AnnotationCreateDto` class:
- Changed `ElementId` from `int` to `long` and made it mutable.
- Marked `Name`, `Value`, and `Type` as `[Obsolete]` with defaults.
- Added `[Obsolete]` attributes to `Width` and `Height`.
- Introduced a new `Page` property to replace `SignatureDto`.

Updated `appsettings.json`:
- Set `Api.BaseUrl` to an empty string.
This commit is contained in:
2026-05-31 11:10:31 +02:00
parent d9d731ab59
commit d97268c18c
2 changed files with 21 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
{
"Api": {
"BaseUrl": "https://localhost:8088",
"BaseUrl": "",
"ForceToUseFakeDocument": true
}
}