Some checks failed
		
		
	
	Build Test Deploy / build-test (push) Has been cancelled
				
			Build Test Deploy / authority-container (push) Has been cancelled
				
			Build Test Deploy / docs (push) Has been cancelled
				
			Build Test Deploy / deploy (push) Has been cancelled
				
			Docs CI / lint-and-preview (push) Has been cancelled
				
			
		
			
				
	
	
		
			18 lines
		
	
	
		
			950 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			950 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Ablera.Serdica.Authority.Models;
 | |
| 
 | |
| 
 | |
| public record Endpoints
 | |
| {
 | |
|     public required string Authorization { get; init; } = "/connect/authorize";
 | |
|     public required string Introspection { get; init; } = "/connect/introspect";
 | |
|     public required string Token { get; init; } = "/connect/token";
 | |
|     public required string Userinfo { get; init; } = "/connect/userinfo";
 | |
|     public required string EndUserVerification { get; init; } = "/connect/verification";
 | |
|     public required string Revocation { get; init; } = "/connect/revocation";
 | |
|     public required string Logout { get; init; } = "/connect/endsession";
 | |
|     public required string CheckSession { get; init; } = "/connect/checksession";
 | |
|     public required string Device { get; init; } = "/connect/device";
 | |
|     public required string Jwks { get; init; } = "/connect/jwks";
 | |
|     public required string Configuration { get; init; } = "/.well-known/openid-configuration";
 | |
| }
 |