mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
15 lines
368 B
C#
15 lines
368 B
C#
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; }
|
|
}
|
|
}
|