27 lines
734 B
C#
27 lines
734 B
C#
// <copyright file="NetworkConfigurationFactory.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
using System.Collections.Generic;
|
|
using MediaBrowser.Common.Configuration;
|
|
|
|
namespace MediaBrowser.Common.Net;
|
|
|
|
/// <summary>
|
|
/// Defines the <see cref="NetworkConfigurationFactory" />.
|
|
/// </summary>
|
|
public class NetworkConfigurationFactory : IConfigurationFactory
|
|
{
|
|
/// <summary>
|
|
/// The GetConfigurations.
|
|
/// </summary>
|
|
/// <returns>The <see cref="IEnumerable{ConfigurationStore}"/>.</returns>
|
|
public IEnumerable<ConfigurationStore> GetConfigurations()
|
|
{
|
|
return new[]
|
|
{
|
|
new NetworkConfigurationStore()
|
|
};
|
|
}
|
|
}
|