You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.7 KiB
57 lines
1.7 KiB
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.Dlna
|
|
{
|
|
public class DeviceIdentification
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the name of the friendly.
|
|
/// </summary>
|
|
/// <value>The name of the friendly.</value>
|
|
public string FriendlyName { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the model number.
|
|
/// </summary>
|
|
/// <value>The model number.</value>
|
|
public string ModelNumber { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the serial number.
|
|
/// </summary>
|
|
/// <value>The serial number.</value>
|
|
public string SerialNumber { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the name of the model.
|
|
/// </summary>
|
|
/// <value>The name of the model.</value>
|
|
public string ModelName { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the manufacturer.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The manufacturer.
|
|
/// </value>
|
|
public string Manufacturer { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the manufacturer URL.
|
|
/// </summary>
|
|
/// <value>The manufacturer URL.</value>
|
|
public string ManufacturerUrl { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the headers.
|
|
/// </summary>
|
|
/// <value>The headers.</value>
|
|
public List<HttpHeaderInfo> Headers { get; set; }
|
|
|
|
public DeviceIdentification()
|
|
{
|
|
Headers = new List<HttpHeaderInfo>();
|
|
}
|
|
}
|
|
|
|
public class HttpHeaderInfo
|
|
{
|
|
public string Name { get; set; }
|
|
public string Value { get; set; }
|
|
}
|
|
}
|