15 lines
282 B
C#
15 lines
282 B
C#
|
|
namespace zero.Api.Models;
|
||
|
|
|
||
|
|
public class ErrorApiResponse : ApiResponse
|
||
|
|
{
|
||
|
|
public ErrorApiResponseError Error { get; set; }
|
||
|
|
}
|
||
|
|
|
||
|
|
public class ErrorApiResponseError
|
||
|
|
{
|
||
|
|
public string Code { get; set; }
|
||
|
|
|
||
|
|
public string Message { get; set; }
|
||
|
|
|
||
|
|
public string ApiPath { get; set; }
|
||
|
|
}
|