jellyfin/Emby.Dlna/ControlResponse.cs
2019-01-13 20:54:44 +01:00

19 lines
368 B
C#

using System.Collections.Generic;
namespace Emby.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>();
}
}
}