using MediaBrowser.Dlna.PlayTo; using System; using System.Net; namespace MediaBrowser.Dlna.Ssdp { public class DeviceDiscoveryInfo { public Device Device { get; set; } /// /// The server's ip address that the device responded to /// public IPAddress LocalIpAddress { get; set; } public Uri Uri { get; set; } public string Usn { get; set; } public string Nt { get; set; } } }