aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/UpnpDeviceInfo.cs
blob: 91cb2b68fc31d92130d5949be4ee6d3212a23085 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma warning disable CS1591
#pragma warning disable SA1600

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; }
    }
}