aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Mono/Networking/NetworkManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Server.Mono/Networking/NetworkManager.cs')
-rw-r--r--MediaBrowser.Server.Mono/Networking/NetworkManager.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/MediaBrowser.Server.Mono/Networking/NetworkManager.cs b/MediaBrowser.Server.Mono/Networking/NetworkManager.cs
index 174d061bf..a1cdf87e4 100644
--- a/MediaBrowser.Server.Mono/Networking/NetworkManager.cs
+++ b/MediaBrowser.Server.Mono/Networking/NetworkManager.cs
@@ -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> ();
}
}
}