14 lines
		
	
	
		
			390 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			390 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using MareSynchronos.MareConfiguration.Configurations;
 | |
| 
 | |
| namespace MareSynchronos.MareConfiguration;
 | |
| 
 | |
| public class SyncshellConfigService : ConfigurationServiceBase<SyncshellConfig>
 | |
| {
 | |
|     public const string ConfigName = "syncshells.json";
 | |
| 
 | |
|     public SyncshellConfigService(string configDir) : base(configDir)
 | |
|     {
 | |
|     }
 | |
| 
 | |
|     protected override string ConfigurationName => ConfigName;
 | |
| } | 
