Files
jellyfin/MediaBrowser.Model/Dlna/UpnpDeviceInfo.cs
2019-07-25 00:15:06 +02:00

15 lines
352 B
C#

using System;
using System.Collections.Generic;
using System.Net;
namespace MediaBrowser.Model.Dlna
{
public class UpnpDeviceInfo
{
public Uri Location { get; set; }
public Dictionary<string, string> Headers { get; set; }
public IPAddress LocalIpAddress { get; set; }
public int LocalPort { get; set; }
}
}