mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
21 lines
449 B
C#
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>();
|
|
}
|
|
}
|
|
}
|