using System; using System.Collections.Generic; using MediaBrowser.Model.Events; using MediaBrowser.Model.Net; namespace MediaBrowser.Controller.Dlna { public interface IDeviceDiscovery { event EventHandler> DeviceDiscovered; event EventHandler> DeviceLeft; } public class UpnpDeviceInfo { public Uri Location { get; set; } public Dictionary Headers { get; set; } public IpAddressInfo LocalIpAddress { get; set; } public int LocalPort { get; set; } } }