23 lines
593 B
C#
23 lines
593 B
C#
// <copyright file="EncodingConfigurationFactory.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
using System.Collections.Generic;
|
|
using MediaBrowser.Common.Configuration;
|
|
|
|
namespace MediaBrowser.MediaEncoding.Configuration
|
|
{
|
|
public class EncodingConfigurationFactory : IConfigurationFactory
|
|
{
|
|
public IEnumerable<ConfigurationStore> GetConfigurations()
|
|
{
|
|
return new[]
|
|
{
|
|
new EncodingConfigurationStore()
|
|
};
|
|
}
|
|
}
|
|
}
|