2020-01-22 13:00:07 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
#pragma warning disable SA1600
|
|
|
|
|
2019-01-13 12:54:44 -07:00
|
|
|
using System.Collections.Generic;
|
2014-05-11 16:02:28 -07:00
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
namespace Emby.Dlna
|
2014-05-11 16:02:28 -07:00
|
|
|
{
|
|
|
|
public class ControlResponse
|
|
|
|
{
|
2020-01-22 13:00:07 -07:00
|
|
|
public ControlResponse()
|
|
|
|
{
|
|
|
|
Headers = new Dictionary<string, string>();
|
|
|
|
}
|
|
|
|
|
2014-05-11 16:02:28 -07:00
|
|
|
public IDictionary<string, string> Headers { get; set; }
|
|
|
|
|
|
|
|
public string Xml { get; set; }
|
|
|
|
|
|
|
|
public bool IsSuccessful { get; set; }
|
|
|
|
}
|
2019-01-13 12:29:23 -07:00
|
|
|
}
|