11 lines
199 B
C#
11 lines
199 B
C#
|
using System.Xml.Serialization;
|
|||
|
|
|||
|
namespace MediaBrowser.Model.Dlna
|
|||
|
{
|
|||
|
public class XmlAttribute
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
|
|||
|
public string Value { get; set; }
|
|||
|
}
|
|||
|
}
|