mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-28 04:51:54 +00:00
23 lines
457 B
C#
23 lines
457 B
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace Emby.Dlna
|
|
{
|
|
public class ControlRequest
|
|
{
|
|
public IHeaderDictionary Headers { get; set; }
|
|
|
|
public Stream InputXml { get; set; }
|
|
|
|
public string TargetServerUuId { get; set; }
|
|
|
|
public string RequestedUrl { get; set; }
|
|
|
|
public ControlRequest()
|
|
{
|
|
Headers = new HeaderDictionary();
|
|
}
|
|
}
|
|
}
|