26 lines
479 B
C#
26 lines
479 B
C#
#nullable disable
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
using System.IO;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace Emby.Dlna
|
|
{
|
|
public class ControlRequest
|
|
{
|
|
public ControlRequest(IHeaderDictionary headers)
|
|
{
|
|
Headers = headers;
|
|
}
|
|
|
|
public IHeaderDictionary Headers { get; }
|
|
|
|
public Stream InputXml { get; set; }
|
|
|
|
public string TargetServerUuId { get; set; }
|
|
|
|
public string RequestedUrl { get; set; }
|
|
}
|
|
}
|