26 lines
716 B
C#
26 lines
716 B
C#
// <copyright file="SubtitleConfigurationFactory.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
using System.Collections.Generic;
|
|
using MediaBrowser.Common.Configuration;
|
|
using MediaBrowser.Model.Providers;
|
|
|
|
namespace MediaBrowser.Common.Providers
|
|
{
|
|
public class SubtitleConfigurationFactory : IConfigurationFactory
|
|
{
|
|
/// <inheritdoc />
|
|
public IEnumerable<ConfigurationStore> GetConfigurations()
|
|
{
|
|
yield return new ConfigurationStore()
|
|
{
|
|
Key = "subtitles",
|
|
ConfigurationType = typeof(SubtitleOptions)
|
|
};
|
|
}
|
|
}
|
|
}
|