Files
mixtape/zero.Api/Models/Responses/ErrorApiResponse.cs
T
2021-12-14 01:23:03 +01:00

17 lines
339 B
C#

namespace zero.Api.Models;
public class ErrorApiResponse : ApiResponse
{
public List<ErrorApiResponseError> Errors { get; set; } = new();
}
public class ErrorApiResponseError
{
public string Code { get; set; }
public string Category { get; set; }
public string Message { get; set; }
public string Property { get; set; }
}