11 lines
235 B
C#
11 lines
235 B
C#
|
namespace API.Errors
|
||
|
{
|
||
|
public class ApiValidationErrorResponse : ApiResponse
|
||
|
{
|
||
|
public ApiValidationErrorResponse() : base(400)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public IEnumerable<string> Errors { get; set; }
|
||
|
}
|
||
|
}
|