aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/ControlResponse.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Dlna/ControlResponse.cs')
-rw-r--r--Emby.Dlna/ControlResponse.cs13
1 files changed, 8 insertions, 5 deletions
diff --git a/Emby.Dlna/ControlResponse.cs b/Emby.Dlna/ControlResponse.cs
index d2b79fc58..0215a5e38 100644
--- a/Emby.Dlna/ControlResponse.cs
+++ b/Emby.Dlna/ControlResponse.cs
@@ -1,18 +1,21 @@
+#pragma warning disable CS1591
+#pragma warning disable SA1600
+
using System.Collections.Generic;
namespace Emby.Dlna
{
public class ControlResponse
{
+ public ControlResponse()
+ {
+ Headers = new Dictionary<string, string>();
+ }
+
public IDictionary<string, string> Headers { get; set; }
public string Xml { get; set; }
public bool IsSuccessful { get; set; }
-
- public ControlResponse()
- {
- Headers = new Dictionary<string, string>();
- }
}
}