aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Dlna
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-05-11 19:02:28 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-05-11 19:02:28 -0400
commitb9b568de13d81f9db1a8502d50940475c1d79c72 (patch)
treea808b700095f876e437b95c432c0220e241f9fda /MediaBrowser.Controller/Dlna
parent0d605b8672ece5129e833a2e9cde11a8aaf1b62a (diff)
updated nuget
Diffstat (limited to 'MediaBrowser.Controller/Dlna')
-rw-r--r--MediaBrowser.Controller/Dlna/ControlRequest.cs14
-rw-r--r--MediaBrowser.Controller/Dlna/ControlResponse.cs18
2 files changed, 18 insertions, 14 deletions
diff --git a/MediaBrowser.Controller/Dlna/ControlRequest.cs b/MediaBrowser.Controller/Dlna/ControlRequest.cs
index 1bb5ddf8a9..7020cc0d9f 100644
--- a/MediaBrowser.Controller/Dlna/ControlRequest.cs
+++ b/MediaBrowser.Controller/Dlna/ControlRequest.cs
@@ -17,18 +17,4 @@ namespace MediaBrowser.Controller.Dlna
Headers = new Dictionary<string, string>();
}
}
-
- public class ControlResponse
- {
- public IDictionary<string, string> Headers { get; set; }
-
- public string Xml { get; set; }
-
- public bool IsSuccessful { get; set; }
-
- public ControlResponse()
- {
- Headers = new Dictionary<string, string>();
- }
- }
}
diff --git a/MediaBrowser.Controller/Dlna/ControlResponse.cs b/MediaBrowser.Controller/Dlna/ControlResponse.cs
new file mode 100644
index 0000000000..8d19a81096
--- /dev/null
+++ b/MediaBrowser.Controller/Dlna/ControlResponse.cs
@@ -0,0 +1,18 @@
+using System.Collections.Generic;
+
+namespace MediaBrowser.Controller.Dlna
+{
+ public class ControlResponse
+ {
+ public IDictionary<string, string> Headers { get; set; }
+
+ public string Xml { get; set; }
+
+ public bool IsSuccessful { get; set; }
+
+ public ControlResponse()
+ {
+ Headers = new Dictionary<string, string>();
+ }
+ }
+} \ No newline at end of file