26 lines
487 B
C#
26 lines
487 B
C#
#pragma warning disable CS1591
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace Emby.Dlna
|
|
{
|
|
public class ControlResponse
|
|
{
|
|
public ControlResponse()
|
|
{
|
|
Headers = new Dictionary<string, string>();
|
|
}
|
|
|
|
public IDictionary<string, string> Headers { get; set; }
|
|
|
|
public string Xml { get; set; }
|
|
|
|
public bool IsSuccessful { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return Xml;
|
|
}
|
|
}
|
|
}
|