diff --git a/src/WindreamHub.Legacy.Client/Models/Documents/Response/Delete/DocDelErrorResponse.cs b/src/WindreamHub.Legacy.Client/Models/Documents/Response/Delete/DocDelErrorResponse.cs new file mode 100644 index 0000000..b0dcd61 --- /dev/null +++ b/src/WindreamHub.Legacy.Client/Models/Documents/Response/Delete/DocDelErrorResponse.cs @@ -0,0 +1,11 @@ +using System.Collections.Generic; + +namespace WindreamHub.Legacy.Client.Models.Documents.Response.Delete +{ + public class DocDelErrorResponse + { + public ErrorDetail Error { get; set; } + public List Errors { get; set; } + public bool HasErrors { get; set; } + } +} \ No newline at end of file diff --git a/src/WindreamHub.Legacy.Client/Models/Documents/Response/Delete/ErrorDetail.cs b/src/WindreamHub.Legacy.Client/Models/Documents/Response/Delete/ErrorDetail.cs new file mode 100644 index 0000000..aeec2f6 --- /dev/null +++ b/src/WindreamHub.Legacy.Client/Models/Documents/Response/Delete/ErrorDetail.cs @@ -0,0 +1,9 @@ +namespace WindreamHub.Legacy.Client.Models.Documents.Response.Delete +{ + public class ErrorDetail + { + public string Message { get; set; } + public int? ErrorCode { get; set; } + public int? Type { get; set; } + } +} diff --git a/src/WindreamHub.Legacy.Client/WindreamHub.Legacy.Client.csproj b/src/WindreamHub.Legacy.Client/WindreamHub.Legacy.Client.csproj index 0eeee01..97ce153 100644 --- a/src/WindreamHub.Legacy.Client/WindreamHub.Legacy.Client.csproj +++ b/src/WindreamHub.Legacy.Client/WindreamHub.Legacy.Client.csproj @@ -88,6 +88,8 @@ + +