2019-01-13 20:02:23 +00:00
|
|
|
using System.Xml.Serialization;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
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; }
|
|
|
|
}
|
2019-01-13 19:31:15 +00:00
|
|
|
}
|