jellyfin/MediaBrowser.Model/Dlna/UpnpDeviceInfo.cs

15 lines
371 B
C#
Raw Normal View History

2018-12-28 00:27:57 +01:00
using System;
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; }
}
}