#pragma warning disable CS1591 using System; namespace MediaBrowser.Model.Dlna { public class DeviceIdentification { /// /// Gets or sets the name of the friendly. /// /// The name of the friendly. public string FriendlyName { get; set; } = string.Empty; /// /// Gets or sets the model number. /// /// The model number. public string ModelNumber { get; set; } = string.Empty; /// /// Gets or sets the serial number. /// /// The serial number. public string SerialNumber { get; set; } = string.Empty; /// /// Gets or sets the name of the model. /// /// The name of the model. public string ModelName { get; set; } = string.Empty; /// /// Gets or sets the model description. /// /// The model description. public string ModelDescription { get; set; } = string.Empty; /// /// Gets or sets the model URL. /// /// The model URL. public string ModelUrl { get; set; } = string.Empty; /// /// Gets or sets the manufacturer. /// /// The manufacturer. public string Manufacturer { get; set; } = string.Empty; /// /// Gets or sets the manufacturer URL. /// /// The manufacturer URL. public string ManufacturerUrl { get; set; } = string.Empty; /// /// Gets or sets the headers. /// /// The headers. public HttpHeaderInfo[] Headers { get; set; } = Array.Empty(); } }