Files
Ocelot/src/Ocelot.Library/Infrastructure/Responses/ErrorResponseGeneric.cs

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)
{
}
}
}