aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/UpnpDeviceInfo.cs
blob: d71013f019a8c4dd09285f21c5f761d6656bd67e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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; }
    }
}