mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			835 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			835 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using MediaBrowser.Common.Configuration;
 | 
						|
using MediaBrowser.Model.Configuration;
 | 
						|
using System.Collections.Generic;
 | 
						|
 | 
						|
namespace MediaBrowser.XbmcMetadata.Configuration
 | 
						|
{
 | 
						|
    public class ConfigurationFactory : IConfigurationFactory
 | 
						|
    {
 | 
						|
        public IEnumerable<ConfigurationStore> GetConfigurations()
 | 
						|
        {
 | 
						|
            return new[]
 | 
						|
            {
 | 
						|
                new ConfigurationStore
 | 
						|
                {
 | 
						|
                     ConfigurationType = typeof(XbmcMetadataOptions),
 | 
						|
                     Key = "xbmcmetadata"
 | 
						|
                }
 | 
						|
            };
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    public static class ConfigurationExtension
 | 
						|
    {
 | 
						|
        public static XbmcMetadataOptions GetNfoConfiguration(this IConfigurationManager manager)
 | 
						|
        {
 | 
						|
            return manager.GetConfiguration<XbmcMetadataOptions>("xbmcmetadata");
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |