aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/UpnpDeviceInfo.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2020-04-05 18:10:56 +0200
committerBond_009 <bond.009@outlook.com>2020-04-05 18:10:56 +0200
commit30ce346f343ca61f921ec7d6faf2f06311c04e71 (patch)
tree009b45907371f10fe4c3195708287f4b464df7dd /MediaBrowser.Model/Dlna/UpnpDeviceInfo.cs
parent29539174a3de47c151cc7c7fd192100e6fbe48d7 (diff)
Enable nullabe reference types for MediaBrowser.Model
Diffstat (limited to 'MediaBrowser.Model/Dlna/UpnpDeviceInfo.cs')
-rw-r--r--MediaBrowser.Model/Dlna/UpnpDeviceInfo.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Dlna/UpnpDeviceInfo.cs b/MediaBrowser.Model/Dlna/UpnpDeviceInfo.cs
index 3dc1fca367..d71013f019 100644
--- a/MediaBrowser.Model/Dlna/UpnpDeviceInfo.cs
+++ b/MediaBrowser.Model/Dlna/UpnpDeviceInfo.cs
@@ -1,3 +1,4 @@
+#nullable disable
#pragma warning disable CS1591
using System;
@@ -9,8 +10,11 @@ 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; }
}
}