mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			880 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			880 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using MediaBrowser.Common.Configuration;
 | |
| using MediaBrowser.Model.Configuration;
 | |
| 
 | |
| namespace MediaBrowser.Controller.Configuration
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Interface IServerConfigurationManager
 | |
|     /// </summary>
 | |
|     public interface IServerConfigurationManager : IConfigurationManager
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Gets the application paths.
 | |
|         /// </summary>
 | |
|         /// <value>The application paths.</value>
 | |
|         IServerApplicationPaths ApplicationPaths { get; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the configuration.
 | |
|         /// </summary>
 | |
|         /// <value>The configuration.</value>
 | |
|         ServerConfiguration Configuration { get; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Sets the preferred metadata service.
 | |
|         /// </summary>
 | |
|         /// <param name="service">The service.</param>
 | |
|         void DisableMetadataService(string service);
 | |
|     }
 | |
| }
 |