jellyfin/Emby.Dlna/ControlResponse.cs

19 lines
368 B
C#
Raw Normal View History

using System.Collections.Generic;
2014-05-11 19:02:28 -04:00
2018-09-12 13:26:21 -04:00
namespace Emby.Dlna
2014-05-11 19:02:28 -04: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>();
}
}
}