using MediaBrowser.Common.Implementations.Networking; using MediaBrowser.Common.Net; using MediaBrowser.Model.Net; using System; using System.Collections.Generic; using System.Runtime.InteropServices; namespace MediaBrowser.ServerApplication.Networking { /// /// Class NetUtils /// public class NetworkManager : BaseNetworkManager, INetworkManager { /// /// Gets the network shares. /// /// The path. /// IEnumerable{NetworkShare}. public IEnumerable GetNetworkShares(string path) { return new List (); } /// /// Gets a list of network devices /// /// PC's in the Domain public IEnumerable GetNetworkDevices() { return new List (); } } }