20 lines
		
	
	
		
			456 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			456 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Core.Blueprint.External;
 | |
| 
 | |
| namespace Core.Thalos.External.GatewayConfigurations
 | |
| {
 | |
|     public record GatewayConfiguration
 | |
|     {
 | |
|         public GatewayConfiguration()
 | |
|         {
 | |
|             ThalosService = new ThalosServiceAPI();
 | |
|         }
 | |
| 
 | |
|         public ThalosServiceAPI ThalosService { get; set; }
 | |
|     }
 | |
|     public record ThalosServiceAPI
 | |
|     {
 | |
|         public string Channel { get; set; }
 | |
|         public BaseEndpoint Endpoint { get; set; }
 | |
|     }
 | |
| }
 | 
