2021-11-30 14:32:10 +01:00
|
|
|
namespace zero.Api.Models;
|
|
|
|
|
|
|
|
|
|
public class ErrorApiResponse : ApiResponse
|
|
|
|
|
{
|
2021-12-13 16:11:52 +01:00
|
|
|
public List<ErrorApiResponseError> Errors { get; set; } = new();
|
2021-11-30 14:32:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class ErrorApiResponseError
|
|
|
|
|
{
|
|
|
|
|
public string Code { get; set; }
|
|
|
|
|
|
2021-12-14 01:23:03 +01:00
|
|
|
public string Category { get; set; }
|
|
|
|
|
|
2021-11-30 14:32:10 +01:00
|
|
|
public string Message { get; set; }
|
|
|
|
|
|
2021-12-14 01:23:03 +01:00
|
|
|
public string Property { get; set; }
|
2021-11-30 14:32:10 +01:00
|
|
|
}
|