aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/ControlRequest.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2023-11-30 17:40:06 +0100
committerGitHub <noreply@github.com>2023-11-30 17:40:06 +0100
commitcc276838b4edbb67356b805952262c38e9c9cd19 (patch)
tree8cb27ed0ba34fdd2d941f43c09ccc2be70c10abb /Emby.Dlna/ControlRequest.cs
parentcf80ea25413b75bbeddaef136fbeee33aa882a60 (diff)
parente46e3be667c76ff9a242d7499aff83d2d10881ed (diff)
Merge pull request #10558 from barronpm/dlna-plugin2
Move DLNA to Plugin (Part 2)
Diffstat (limited to 'Emby.Dlna/ControlRequest.cs')
-rw-r--r--Emby.Dlna/ControlRequest.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/Emby.Dlna/ControlRequest.cs b/Emby.Dlna/ControlRequest.cs
deleted file mode 100644
index 8ee6325e9..000000000
--- a/Emby.Dlna/ControlRequest.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-#nullable disable
-
-#pragma warning disable CS1591
-
-using System.IO;
-using Microsoft.AspNetCore.Http;
-
-namespace Emby.Dlna
-{
- public class ControlRequest
- {
- public ControlRequest(IHeaderDictionary headers)
- {
- Headers = headers;
- }
-
- public IHeaderDictionary Headers { get; }
-
- public Stream InputXml { get; set; }
-
- public string TargetServerUuId { get; set; }
-
- public string RequestedUrl { get; set; }
- }
-}