mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-05-03 02:12:50 +08:00
11 lines
232 B
C#
11 lines
232 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Ocelot.Library.Infrastructure.Responses
|
|
{
|
|
public class ErrorResponse<T> : Response<T>
|
|
{
|
|
public ErrorResponse(List<Error> errors) : base(errors)
|
|
{
|
|
}
|
|
}
|
|
} |