mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 02:49:05 -07:00
17 lines
386 B
C#
17 lines
386 B
C#
using System.Xml.Serialization;
|
|
using MediaBrowser.Model.Dlna;
|
|
|
|
namespace Emby.Dlna.ProfileSerialization
|
|
{
|
|
public class HttpHeaderInfo
|
|
{
|
|
[XmlAttribute("name")]
|
|
public string Name { get; set; }
|
|
|
|
[XmlAttribute("value")]
|
|
public string Value { get; set; }
|
|
|
|
[XmlAttribute("match")]
|
|
public HeaderMatchType Match { get; set; }
|
|
}
|
|
} |