update dlna profiles

This commit is contained in:
Luke Pulverenti
2016-12-09 02:23:09 -05:00
parent 56fb08eeed
commit c7d520555b
83 changed files with 2738 additions and 875 deletions

View File

@@ -1,13 +1,17 @@
using System.Xml.Serialization;
using MediaBrowser.Model.Dlna;
namespace MediaBrowser.Model.Dlna
{
public class HttpHeaderInfo
{
[XmlAttribute("name")]
public string Name { get; set; }
[XmlAttribute("value")]
public string Value { get; set; }
[XmlAttribute("match")]
public HeaderMatchType Match { get; set; }
}
}