22 lines
564 B
C#
22 lines
564 B
C#
using System.Collections.Generic;
|
|
using MediaBrowser.Common.Configuration;
|
|
using MediaBrowser.Model.Branding;
|
|
|
|
namespace Emby.Server.Implementations.Branding
|
|
{
|
|
public class BrandingConfigurationFactory : IConfigurationFactory
|
|
{
|
|
public IEnumerable<ConfigurationStore> GetConfigurations()
|
|
{
|
|
return new[]
|
|
{
|
|
new ConfigurationStore
|
|
{
|
|
ConfigurationType = typeof(BrandingOptions),
|
|
Key = "branding"
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|