jellyfin/MediaBrowser.Controller/Dlna/ControlRequest.cs

21 lines
449 B
C#
Raw Normal View History

2014-04-10 17:06:54 +02:00
using System.Collections.Generic;
namespace MediaBrowser.Controller.Dlna
{
public class ControlRequest
{
public IDictionary<string, string> Headers { get; set; }
public string InputXml { get; set; }
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
public ControlRequest()
{
Headers = new Dictionary<string, string>();
}
}
}