diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-11-02 16:58:51 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-11-02 16:58:51 -0400 |
| commit | 78f9364b034d73ec80836e2c3a3b62714c8a3bdd (patch) | |
| tree | 10e567068db1bd788c58a969c1e3c889961f5a5b /Emby.Server.Implementations/Branding | |
| parent | d71d2a5d02cf31b67420b54160868247f23546bb (diff) | |
move classes to portable server project
Diffstat (limited to 'Emby.Server.Implementations/Branding')
| -rw-r--r-- | Emby.Server.Implementations/Branding/BrandingConfigurationFactory.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Branding/BrandingConfigurationFactory.cs b/Emby.Server.Implementations/Branding/BrandingConfigurationFactory.cs new file mode 100644 index 000000000..a29f55f16 --- /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<ConfigurationStore> GetConfigurations() + { + return new[] + { + new ConfigurationStore + { + ConfigurationType = typeof(BrandingOptions), + Key = "branding" + } + }; + } + } +} |
