18 lines
		
	
	
		
			442 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			442 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Core.Blueprint.External.GatewayConfigurations
 | |
| {
 | |
|     public record GatewayConfiguration
 | |
|     {
 | |
|         public GatewayConfiguration()
 | |
|         {
 | |
|             BlueprintService = new BlueprintServiceAPI();
 | |
|         }
 | |
| 
 | |
|         public BlueprintServiceAPI BlueprintService { get; set; }
 | |
|     }
 | |
|     public record BlueprintServiceAPI
 | |
|     {
 | |
|         public string Channel { get; set; }
 | |
|         public BaseEndpoint Endpoint { get; set; }
 | |
|     }
 | |
| }
 | 
