2019-01-13 20:02:23 +00:00
|
|
|
using System;
|
2018-12-27 23:27:57 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using MediaBrowser.Model.Net;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Dlna
|
|
|
|
{
|
|
|
|
public class UpnpDeviceInfo
|
|
|
|
{
|
|
|
|
public Uri Location { get; set; }
|
|
|
|
public Dictionary<string, string> Headers { get; set; }
|
|
|
|
public IpAddressInfo LocalIpAddress { get; set; }
|
|
|
|
public int LocalPort { get; set; }
|
|
|
|
}
|
|
|
|
}
|