jellyfin/MediaBrowser.Controller/Dlna/ControlResponse.cs

18 lines
389 B
C#
Raw Normal View History

2014-05-11 19:02:28 -04:00
using System.Collections.Generic;
namespace MediaBrowser.Controller.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>();
}
}
}