20 lines
		
	
	
		
			468 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			468 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Core.Blueprint.External;
 | |
| 
 | |
| namespace Core.Cerberos.External.GatewayConfigurations
 | |
| {
 | |
|     public record GatewayConfiguration
 | |
|     {
 | |
|         public GatewayConfiguration()
 | |
|         {
 | |
|             CerberosService = new CerberosServiceAPI();
 | |
|         }
 | |
| 
 | |
|         public CerberosServiceAPI CerberosService { get; set; }
 | |
|     }
 | |
|     public record CerberosServiceAPI
 | |
|     {
 | |
|         public string Channel { get; set; }
 | |
|         public BaseEndpoint Endpoint { get; set; }
 | |
|     }
 | |
| }
 | 
