aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/HttpHeaderInfo.cs
blob: 926963ef67b702da5d92dfe010f50f8899a3d653 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.Xml.Serialization;

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; }
    }
}