add more methods to file system interface

This commit is contained in:
Luke Pulverenti
2014-01-01 13:26:31 -05:00
parent 88b638fbd6
commit b9d17c9bc7
54 changed files with 737 additions and 459 deletions

View File

@@ -1,5 +1,6 @@
using MediaBrowser.Common.Implementations.Networking;
using MediaBrowser.Common.Net;
using MediaBrowser.Model.IO;
using MediaBrowser.Model.Net;
using System;
using System.Collections.Generic;
@@ -26,9 +27,9 @@ namespace MediaBrowser.ServerApplication.Networking
/// Gets a list of network devices
/// </summary>
/// PC's in the Domain</returns>
public IEnumerable<string> GetNetworkDevices()
public IEnumerable<FileSystemEntryInfo> GetNetworkDevices()
{
return new List<string> ();
return new List<FileSystemEntryInfo> ();
}
}
}