jellyfin-server/Emby.Dlna/ControlRequest.cs

26 lines
479 B
C#
Raw Normal View History

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