aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Branding
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-02 16:58:51 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-02 16:58:51 -0400
commit78f9364b034d73ec80836e2c3a3b62714c8a3bdd (patch)
tree10e567068db1bd788c58a969c1e3c889961f5a5b /MediaBrowser.Server.Implementations/Branding
parentd71d2a5d02cf31b67420b54160868247f23546bb (diff)
move classes to portable server project
Diffstat (limited to 'MediaBrowser.Server.Implementations/Branding')
-rw-r--r--MediaBrowser.Server.Implementations/Branding/BrandingConfigurationFactory.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/MediaBrowser.Server.Implementations/Branding/BrandingConfigurationFactory.cs b/MediaBrowser.Server.Implementations/Branding/BrandingConfigurationFactory.cs
deleted file mode 100644
index d6cd3424b..000000000
--- a/MediaBrowser.Server.Implementations/Branding/BrandingConfigurationFactory.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-using MediaBrowser.Common.Configuration;
-using MediaBrowser.Model.Branding;
-using System.Collections.Generic;
-
-namespace MediaBrowser.Server.Implementations.Branding
-{
- public class BrandingConfigurationFactory : IConfigurationFactory
- {
- public IEnumerable<ConfigurationStore> GetConfigurations()
- {
- return new[]
- {
- new ConfigurationStore
- {
- ConfigurationType = typeof(BrandingOptions),
- Key = "branding"
- }
- };
- }
- }
-}