mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
18 lines
389 B
C#
18 lines
389 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.Dlna
|
|
{
|
|
public class ControlResponse
|
|
{
|
|
public IDictionary<string, string> Headers { get; set; }
|
|
|
|
public string Xml { get; set; }
|
|
|
|
public bool IsSuccessful { get; set; }
|
|
|
|
public ControlResponse()
|
|
{
|
|
Headers = new Dictionary<string, string>();
|
|
}
|
|
}
|
|
} |