blob: c7489d57ae219f50f7d4e37e88aa06602d8fa3c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#nullable disable
#pragma warning disable CS1591
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; }
public IPAddress RemoteIPAddress { get; set; }
}
}
|