2019-01-13 19:54:44 +00:00
|
|
|
using System.Collections.Generic;
|
2014-05-11 23:02:28 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
namespace Emby.Dlna
|
2014-05-11 23:02:28 +00:00
|
|
|
{
|
|
|
|
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>();
|
|
|
|
}
|
|
|
|
}
|
2019-01-13 19:29:23 +00:00
|
|
|
}
|