Reduce warnings in Emby.Dlna

This commit is contained in:
David
2020-08-20 17:01:04 +02:00
parent 250e351613
commit ca2b36bdb0
45 changed files with 390 additions and 354 deletions

View File

@@ -7,6 +7,11 @@ namespace Emby.Dlna
{
public class ControlRequest
{
public ControlRequest()
{
Headers = new HeaderDictionary();
}
public IHeaderDictionary Headers { get; set; }
public Stream InputXml { get; set; }
@@ -14,10 +19,5 @@ namespace Emby.Dlna
public string TargetServerUuId { get; set; }
public string RequestedUrl { get; set; }
public ControlRequest()
{
Headers = new HeaderDictionary();
}
}
}