move classes to portable server project

This commit is contained in:
Luke Pulverenti
2016-11-02 16:58:51 -04:00
parent d71d2a5d02
commit 78f9364b03
8 changed files with 14 additions and 23 deletions

View File

@@ -0,0 +1,21 @@
using MediaBrowser.Common.Configuration;
using MediaBrowser.Model.Branding;
using System.Collections.Generic;
namespace Emby.Server.Implementations.Branding
{
public class BrandingConfigurationFactory : IConfigurationFactory
{
public IEnumerable<ConfigurationStore> GetConfigurations()
{
return new[]
{
new ConfigurationStore
{
ConfigurationType = typeof(BrandingOptions),
Key = "branding"
}
};
}
}
}