XmlAttribute.cs 591 B

12345678910111213141516171819202122232425
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. using System.Xml.Serialization;
  4. namespace MediaBrowser.Model.Dlna
  5. {
  6. /// <summary>
  7. /// Defines the <see cref="XmlAttribute" />.
  8. /// </summary>
  9. public class XmlAttribute
  10. {
  11. /// <summary>
  12. /// Gets or sets the name of the attribute.
  13. /// </summary>
  14. [XmlAttribute("name")]
  15. public string Name { get; set; }
  16. /// <summary>
  17. /// Gets or sets the value of the attribute.
  18. /// </summary>
  19. [XmlAttribute("value")]
  20. public string Value { get; set; }
  21. }
  22. }