mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-17 21:44:50 +01:00
13 lines
No EOL
253 B
C#
13 lines
No EOL
253 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace MediaBrowser.Model.Dlna
|
|
{
|
|
public class HttpHeaderInfo
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public string Value { get; set; }
|
|
|
|
public HeaderMatchType Match { get; set; }
|
|
}
|
|
} |