feat: Dokumenterstellungs-Methoden zu DocumentsRouteService hinzugefügt und Modelle aktualisiert

- Zwei `Create`-Methoden in `DocumentsRouteService` hinzugefügt, um die Dokumentenerstellung über HTTP-POST-Anfragen zu ermöglichen.
- `int`-Felder im `DocCreateBody`-Modell in `int?` umgewandelt, um mögliche Nullwerte vom Server zu berücksichtigen.
- Die neue Dokumenterstellungsfunktion in WindreamClientService integriert.
This commit is contained in:
Developer 02
2024-09-13 00:40:06 +02:00
parent 152b4f7cff
commit 39e78821cf
15 changed files with 41 additions and 21 deletions

View File

@@ -6,6 +6,6 @@ namespace WindreamHub.Legacy.Client.Models.Documents.Response
{
public ErrorItem Item { get; set; }
public string Message { get; set; }
public int ErrorCode { get; set; }
public int? ErrorCode { get; set; }
}
}