From a86b71899ec52c44ddc6c3018e8cc5e9d7ff4d62 Mon Sep 17 00:00:00 2001 From: Andrew Rabert Date: Thu, 27 Dec 2018 18:27:57 -0500 Subject: Add GPL modules --- MediaBrowser.Model/Dlna/DeviceIdentification.cs | 61 +++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 MediaBrowser.Model/Dlna/DeviceIdentification.cs (limited to 'MediaBrowser.Model/Dlna/DeviceIdentification.cs') diff --git a/MediaBrowser.Model/Dlna/DeviceIdentification.cs b/MediaBrowser.Model/Dlna/DeviceIdentification.cs new file mode 100644 index 0000000000..97f4409daf --- /dev/null +++ b/MediaBrowser.Model/Dlna/DeviceIdentification.cs @@ -0,0 +1,61 @@ +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; } + /// + /// 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 model description. + /// + /// The model description. + public string ModelDescription { get; set; } + /// + /// Gets or sets the device description. + /// + /// The device description. + public string DeviceDescription { get; set; } + /// + /// Gets or sets the model URL. + /// + /// The model URL. + public string ModelUrl { 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 HttpHeaderInfo[] Headers { get; set; } + + public DeviceIdentification() + { + Headers = new HttpHeaderInfo[] {}; + } + } +} -- cgit v1.2.3