using System.Collections.Generic;
namespace MediaBrowser.Controller.Dlna
{
public class DeviceIdentification
{
///
/// Gets or sets the name of the friendly.
///
/// The name of the friendly.
public string FriendlyName { get; set; }
///
/// Gets or sets the model number.
///
/// The model number.
public string ModelNumber { get; set; }
///
/// Gets or sets the serial number.
///
/// The serial number.
public string SerialNumber { get; set; }
///
/// Gets or sets the name of the model.
///
/// The name of the model.
public string ModelName { get; set; }
///
/// Gets or sets the manufacturer.
///
///
/// The manufacturer.
///
public string Manufacturer { get; set; }
///
/// Gets or sets the manufacturer URL.
///
/// The manufacturer URL.
public string ManufacturerUrl { get; set; }
///
/// Gets or sets the headers.
///
/// The headers.
public List Headers { get; set; }
public DeviceIdentification()
{
Headers = new List();
}
}
public class HttpHeaderInfo
{
public string Name { get; set; }
public string Value { get; set; }
}
}