jellyfin/MediaBrowser.Controller/Dlna/ControlRequest.cs
Luke Pulverenti b9b568de13 updated nuget
2014-05-11 19:02:28 -04:00

21 lines
449 B
C#

using System.Collections.Generic;
namespace MediaBrowser.Controller.Dlna
{
public class ControlRequest
{
public IDictionary<string, string> Headers { get; set; }
public string InputXml { get; set; }
public string TargetServerUuId { get; set; }
public string RequestedUrl { get; set; }
public ControlRequest()
{
Headers = new Dictionary<string, string>();
}
}
}