jellyfin/Emby.Dlna/ControlRequest.cs

24 lines
455 B
C#
Raw Normal View History

#pragma warning disable CS1591
2016-11-04 09:31:05 +01:00
using System.IO;
using Microsoft.AspNetCore.Http;
2014-04-10 17:06:54 +02:00
2018-09-12 19:26:21 +02:00
namespace Emby.Dlna
2014-04-10 17:06:54 +02:00
{
public class ControlRequest
{
2020-08-20 17:01:04 +02:00
public ControlRequest()
{
Headers = new HeaderDictionary();
}
public IHeaderDictionary Headers { get; set; }
2014-04-10 17:06:54 +02:00
2016-11-04 09:31:05 +01:00
public Stream InputXml { get; set; }
2014-04-10 17:06:54 +02:00
2014-04-18 07:03:01 +02:00
public string TargetServerUuId { get; set; }
2014-04-25 19:30:41 +02:00
public string RequestedUrl { get; set; }
2014-04-10 17:06:54 +02:00
}
}