aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/UpnpDeviceInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Dlna/UpnpDeviceInfo.cs')
-rw-r--r--MediaBrowser.Model/Dlna/UpnpDeviceInfo.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/MediaBrowser.Model/Dlna/UpnpDeviceInfo.cs b/MediaBrowser.Model/Dlna/UpnpDeviceInfo.cs
deleted file mode 100644
index c7489d57a..000000000
--- a/MediaBrowser.Model/Dlna/UpnpDeviceInfo.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-#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; }
- }
-}