jellyfin-server/MediaBrowser.Controller/Dlna/ControlRequest.cs

35 lines
759 B
C#
Raw Normal View History

2014-04-10 15:06:54 +00: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 05:03:01 +00:00
public string TargetServerUuId { get; set; }
2014-04-25 17:30:41 +00:00
public string RequestedUrl { get; set; }
2014-04-10 15:06:54 +00:00
public ControlRequest()
{
Headers = new Dictionary<string, string>();
}
}
public class ControlResponse
{
public IDictionary<string, string> Headers { get; set; }
public string Xml { get; set; }
2014-04-18 05:03:01 +00:00
public bool IsSuccessful { get; set; }
2014-04-10 15:06:54 +00:00
public ControlResponse()
{
Headers = new Dictionary<string, string>();
}
}
}