From d5ea8ca3ad378fc7e0a18ad314e1dfce07003ab6 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 3 Nov 2016 19:35:19 -0400 Subject: move classes to portable --- .../LiveTv/LiveTvConfigurationFactory.cs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Emby.Server.Implementations/LiveTv/LiveTvConfigurationFactory.cs (limited to 'Emby.Server.Implementations/LiveTv/LiveTvConfigurationFactory.cs') diff --git a/Emby.Server.Implementations/LiveTv/LiveTvConfigurationFactory.cs b/Emby.Server.Implementations/LiveTv/LiveTvConfigurationFactory.cs new file mode 100644 index 0000000000..2be6427372 --- /dev/null +++ b/Emby.Server.Implementations/LiveTv/LiveTvConfigurationFactory.cs @@ -0,0 +1,21 @@ +using MediaBrowser.Common.Configuration; +using MediaBrowser.Model.LiveTv; +using System.Collections.Generic; + +namespace Emby.Server.Implementations.LiveTv +{ + public class LiveTvConfigurationFactory : IConfigurationFactory + { + public IEnumerable GetConfigurations() + { + return new List + { + new ConfigurationStore + { + ConfigurationType = typeof(LiveTvOptions), + Key = "livetv" + } + }; + } + } +} -- cgit v1.2.3