mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			677 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			677 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; }
 | 
						|
    }
 | 
						|
}
 |