jellyfin/MediaBrowser.Controller/Dlna/ControlRequest.cs

29 lines
607 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; }
public ControlRequest()
{
Headers = new Dictionary<string, string>();
}
}
public class ControlResponse
{
public IDictionary<string, string> Headers { get; set; }
public string Xml { get; set; }
public ControlResponse()
{
Headers = new Dictionary<string, string>();
}
}
}