diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-17 10:48:16 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-17 10:48:16 -0400 |
| commit | 78acab691693d6adfac67bcf3f0617e336f801a6 (patch) | |
| tree | 1b94ff05caf34974161595823898b8b32e1f6d24 /MediaBrowser.Controller/Dlna/DeviceIdentification.cs | |
| parent | f12d8b0c182ab4528f4d5754438135e2124696da (diff) | |
expand device identification
Diffstat (limited to 'MediaBrowser.Controller/Dlna/DeviceIdentification.cs')
| -rw-r--r-- | MediaBrowser.Controller/Dlna/DeviceIdentification.cs | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Dlna/DeviceIdentification.cs b/MediaBrowser.Controller/Dlna/DeviceIdentification.cs new file mode 100644 index 000000000..a3a615516 --- /dev/null +++ b/MediaBrowser.Controller/Dlna/DeviceIdentification.cs @@ -0,0 +1,56 @@ +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; } + } +} |
