aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Dlna/ControlResponse.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Dlna/ControlResponse.cs')
-rw-r--r--MediaBrowser.Controller/Dlna/ControlResponse.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Dlna/ControlResponse.cs b/MediaBrowser.Controller/Dlna/ControlResponse.cs
new file mode 100644
index 000000000..8d19a8109
--- /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