- Add YarpGateway.slnx solution file - Move all project files to src/ directory - Update Dockerfile for new src/ path structure - Update CI/CD workflow with src/ project path - Fix NuGet package references (use Gitea NuGet packages) - Add CPM (Central Package Management) with Directory.Packages.props
10 lines
281 B
C#
10 lines
281 B
C#
namespace YarpGateway.Config;
|
|
|
|
public class JwtConfig
|
|
{
|
|
public string Authority { get; set; } = string.Empty;
|
|
public string Audience { get; set; } = string.Empty;
|
|
public bool ValidateIssuer { get; set; } = true;
|
|
public bool ValidateAudience { get; set; } = true;
|
|
}
|