You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
455 B
24 lines
455 B
#pragma warning disable CS1591
|
|
|
|
using System.IO;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace Emby.Dlna
|
|
{
|
|
public class ControlRequest
|
|
{
|
|
public IHeaderDictionary Headers { get; set; }
|
|
|
|
public Stream InputXml { get; set; }
|
|
|
|
public string TargetServerUuId { get; set; }
|
|
|
|
public string RequestedUrl { get; set; }
|
|
|
|
public ControlRequest()
|
|
{
|
|
Headers = new HeaderDictionary();
|
|
}
|
|
}
|
|
}
|