feat: Modelle für die Antwort auf die Dokumentenerstellung in DocumentsRouteService hinzugefügt

This commit is contained in:
Developer 02
2024-09-12 22:05:59 +02:00
parent 987cecba4c
commit 152b4f7cff
13 changed files with 117 additions and 8 deletions

View File

@@ -0,0 +1,11 @@
using WindreamHub.Legacy.Client.Models.Shared;
namespace WindreamHub.Legacy.Client.Models.Documents.Response
{
public class Error
{
public ErrorItem Item { get; set; }
public string Message { get; set; }
public int ErrorCode { get; set; }
}
}