aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/XmlAttribute.cs
blob: 03bb2e4b119c1d6fc6a62e0a5b945302013e1321 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#nullable disable
#pragma warning disable CS1591

using System.Xml.Serialization;

namespace MediaBrowser.Model.Dlna
{
    /// <summary>
    /// Defines the <see cref="XmlAttribute" />.
    /// </summary>
    public class XmlAttribute
    {
        /// <summary>
        /// Gets or sets the name of the attribute.
        /// </summary>
        [XmlAttribute("name")]
        public string Name { get; set; }

        /// <summary>
        /// Gets or sets the value of the attribute.
        /// </summary>
        [XmlAttribute("value")]
        public string Value { get; set; }
    }
}