mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-05-01 08:32:51 +08:00
15 lines
406 B
C#
15 lines
406 B
C#
namespace Ocelot.Administration
|
|
{
|
|
using System.Collections.Generic;
|
|
|
|
public interface IIdentityServerConfiguration
|
|
{
|
|
string ApiName { get; }
|
|
string ApiSecret { get; }
|
|
bool RequireHttps { get; }
|
|
List<string> AllowedScopes { get; }
|
|
string CredentialsSigningCertificateLocation { get; }
|
|
string CredentialsSigningCertificatePassword { get; }
|
|
}
|
|
}
|