aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/UpnpDeviceInfo.cs
blob: 987a3a908f6ed8dfe9ec37b5302f111f63d4b5df (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; }
    }
}