aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/HttpHeaderInfo.cs
blob: b4fa4e0afd4e77e4f07342167edd4985912bb39c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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; }
    }
}