mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-05-04 13:52:51 +08:00
12 lines
293 B
C#
12 lines
293 B
C#
using System.Collections.Generic;
|
|
using Ocelot.Library.Infrastructure.Errors;
|
|
using Ocelot.Library.Infrastructure.Responses;
|
|
|
|
namespace Ocelot.Library.Infrastructure.Responder
|
|
{
|
|
public interface IErrorsToHttpStatusCodeMapper
|
|
{
|
|
Response<int> Map(List<Error> errors);
|
|
}
|
|
}
|