11 lines
298 B
C#
11 lines
298 B
C#
using System.Collections.Generic;
|
|
|
|
namespace WindreamHub.Legacy.Client.Models.Documents.Response.Delete
|
|
{
|
|
public class DocDelErrorResponse
|
|
{
|
|
public ErrorDetail Error { get; set; }
|
|
public List<Error> Errors { get; set; }
|
|
public bool HasErrors { get; set; }
|
|
}
|
|
} |