aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Net/NetworkConfigurationFactory.cs
blob: 9309834f4ba57522f55825101ed5044c6769613a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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()
        };
    }
}