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
				
			
		
			
				
	
	
		
			15 lines
		
	
	
		
			501 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			501 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.Collections.Generic;
 | |
| using System.Net;
 | |
| using System.Text.Json.Nodes;
 | |
| 
 | |
| namespace Ablera.Serdica.Authentication.Models;
 | |
| 
 | |
| public sealed class ProxyResult
 | |
| {
 | |
|     public HttpStatusCode StatusCode { get; init; } = HttpStatusCode.OK;
 | |
|     public JsonNode? Data { get; init; } // null ⇒ no body
 | |
|     public IDictionary<string, string>? Errors { get; init; }
 | |
|     public string? TraceId { get; init; }
 | |
|     public string? Title { get; init; }
 | |
|     public string? Type { get; init; }
 | |
| } |