2016-10-29 22:22:20 +00:00
|
|
|
|
using System.Xml.Serialization;
|
|
|
|
|
using MediaBrowser.Model.Dlna;
|
|
|
|
|
|
2016-10-29 22:34:54 +00:00
|
|
|
|
namespace Emby.Dlna.ProfileSerialization
|
2016-10-29 22:22:20 +00:00
|
|
|
|
{
|
|
|
|
|
public class HttpHeaderInfo
|
|
|
|
|
{
|
|
|
|
|
[XmlAttribute("name")]
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlAttribute("value")]
|
|
|
|
|
public string Value { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlAttribute("match")]
|
|
|
|
|
public HeaderMatchType Match { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|