mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-05-01 10:12:51 +08:00
16 lines
417 B
C#
16 lines
417 B
C#
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace Ocelot.Library.Authentication.Handler
|
|
{
|
|
public class AuthenticationHandler
|
|
{
|
|
public AuthenticationHandler(string provider, RequestDelegate handler)
|
|
{
|
|
Provider = provider;
|
|
Handler = handler;
|
|
}
|
|
|
|
public string Provider { get; private set; }
|
|
public RequestDelegate Handler { get; private set; }
|
|
}
|
|
} |