jellyfin/Emby.Dlna/ControlRequest.cs

22 lines
444 B
C#
Raw Normal View History

using System.Collections.Generic;
2016-11-04 04:31:05 -04:00
using System.IO;
2014-04-10 11:06:54 -04:00
2018-09-12 13:26:21 -04:00
namespace Emby.Dlna
2014-04-10 11:06:54 -04:00
{
public class ControlRequest
{
public IDictionary<string, string> Headers { get; set; }
2016-11-04 04:31:05 -04:00
public Stream InputXml { get; set; }
2014-04-10 11:06:54 -04:00
2014-04-18 01:03:01 -04:00
public string TargetServerUuId { get; set; }
2014-04-25 13:30:41 -04:00
public string RequestedUrl { get; set; }
2014-04-10 11:06:54 -04:00
public ControlRequest()
{
Headers = new Dictionary<string, string>();
}
}
}