aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Dlna/ControlRequest.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-04-10 11:06:54 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-04-10 11:06:54 -0400
commit3094868a83937d2f5c49b06abd53757ef304a7e2 (patch)
treeed66b10daad8362000ea358e6d6f8f033d190a2b /MediaBrowser.Controller/Dlna/ControlRequest.cs
parentf657e2981cb928720eb728790697c0653cb7344f (diff)
beginning dlna server
Diffstat (limited to 'MediaBrowser.Controller/Dlna/ControlRequest.cs')
-rw-r--r--MediaBrowser.Controller/Dlna/ControlRequest.cs28
1 files changed, 28 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Dlna/ControlRequest.cs b/MediaBrowser.Controller/Dlna/ControlRequest.cs
new file mode 100644
index 000000000..74e68b7d0
--- /dev/null
+++ b/MediaBrowser.Controller/Dlna/ControlRequest.cs
@@ -0,0 +1,28 @@
+using System.Collections.Generic;
+
+namespace MediaBrowser.Controller.Dlna
+{
+ public class ControlRequest
+ {
+ public IDictionary<string, string> Headers { get; set; }
+
+ public string InputXml { get; set; }
+
+ public ControlRequest()
+ {
+ Headers = new Dictionary<string, string>();
+ }
+ }
+
+ public class ControlResponse
+ {
+ public IDictionary<string, string> Headers { get; set; }
+
+ public string Xml { get; set; }
+
+ public ControlResponse()
+ {
+ Headers = new Dictionary<string, string>();
+ }
+ }
+}