From 78f9364b034d73ec80836e2c3a3b62714c8a3bdd Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 2 Nov 2016 16:58:51 -0400 Subject: move classes to portable server project --- .../Branding/BrandingConfigurationFactory.cs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Emby.Server.Implementations/Branding/BrandingConfigurationFactory.cs (limited to 'Emby.Server.Implementations/Branding') diff --git a/Emby.Server.Implementations/Branding/BrandingConfigurationFactory.cs b/Emby.Server.Implementations/Branding/BrandingConfigurationFactory.cs new file mode 100644 index 0000000000..a29f55f168 --- /dev/null +++ b/Emby.Server.Implementations/Branding/BrandingConfigurationFactory.cs @@ -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 GetConfigurations() + { + return new[] + { + new ConfigurationStore + { + ConfigurationType = typeof(BrandingOptions), + Key = "branding" + } + }; + } + } +} -- cgit v1.2.3