2019-01-13 19:54:44 +00:00
|
|
|
using System.Collections.Generic;
|
2019-01-13 19:20:16 +00:00
|
|
|
using MediaBrowser.Common.Configuration;
|
2014-07-04 02:22:57 +00:00
|
|
|
using MediaBrowser.Model.Branding;
|
|
|
|
|
2016-11-02 20:58:51 +00:00
|
|
|
namespace Emby.Server.Implementations.Branding
|
2014-07-04 02:22:57 +00:00
|
|
|
{
|
|
|
|
public class BrandingConfigurationFactory : IConfigurationFactory
|
|
|
|
{
|
|
|
|
public IEnumerable<ConfigurationStore> GetConfigurations()
|
|
|
|
{
|
|
|
|
return new[]
|
|
|
|
{
|
|
|
|
new ConfigurationStore
|
|
|
|
{
|
|
|
|
ConfigurationType = typeof(BrandingOptions),
|
|
|
|
Key = "branding"
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|