#nullable disable #pragma warning disable CS1591 using System.Xml.Serialization; namespace MediaBrowser.Model.Dlna { /// /// Defines the . /// public class XmlAttribute { /// /// Gets or sets the name of the attribute. /// [XmlAttribute("name")] public string Name { get; set; } /// /// Gets or sets the value of the attribute. /// [XmlAttribute("value")] public string Value { get; set; } } }