jellyfin/MediaBrowser.Controller/Dlna/ControlRequest.cs

22 lines
466 B
C#
Raw Normal View History

2014-04-10 08:06:54 -07:00
using System.Collections.Generic;
2016-11-04 01:31:05 -07:00
using System.IO;
2014-04-10 08:06:54 -07:00
namespace MediaBrowser.Controller.Dlna
{
public class ControlRequest
{
public IDictionary<string, string> Headers { get; set; }
2016-11-04 01:31:05 -07:00
public Stream InputXml { get; set; }
2014-04-10 08:06:54 -07:00
2014-04-17 22:03:01 -07:00
public string TargetServerUuId { get; set; }
2014-04-25 10:30:41 -07:00
public string RequestedUrl { get; set; }
2014-04-10 08:06:54 -07:00
public ControlRequest()
{
Headers = new Dictionary<string, string>();
}
}
}