DeviceIdentification.cs 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. namespace MediaBrowser.Model.Dlna
  2. {
  3. public class DeviceIdentification
  4. {
  5. /// <summary>
  6. /// Gets or sets the name of the friendly.
  7. /// </summary>
  8. /// <value>The name of the friendly.</value>
  9. public string FriendlyName { get; set; }
  10. /// <summary>
  11. /// Gets or sets the model number.
  12. /// </summary>
  13. /// <value>The model number.</value>
  14. public string ModelNumber { get; set; }
  15. /// <summary>
  16. /// Gets or sets the serial number.
  17. /// </summary>
  18. /// <value>The serial number.</value>
  19. public string SerialNumber { get; set; }
  20. /// <summary>
  21. /// Gets or sets the name of the model.
  22. /// </summary>
  23. /// <value>The name of the model.</value>
  24. public string ModelName { get; set; }
  25. /// <summary>
  26. /// Gets or sets the model description.
  27. /// </summary>
  28. /// <value>The model description.</value>
  29. public string ModelDescription { get; set; }
  30. /// <summary>
  31. /// Gets or sets the device description.
  32. /// </summary>
  33. /// <value>The device description.</value>
  34. public string DeviceDescription { get; set; }
  35. /// <summary>
  36. /// Gets or sets the model URL.
  37. /// </summary>
  38. /// <value>The model URL.</value>
  39. public string ModelUrl { get; set; }
  40. /// <summary>
  41. /// Gets or sets the manufacturer.
  42. /// </summary>
  43. /// <value>The manufacturer.</value>
  44. public string Manufacturer { get; set; }
  45. /// <summary>
  46. /// Gets or sets the manufacturer URL.
  47. /// </summary>
  48. /// <value>The manufacturer URL.</value>
  49. public string ManufacturerUrl { get; set; }
  50. /// <summary>
  51. /// Gets or sets the headers.
  52. /// </summary>
  53. /// <value>The headers.</value>
  54. public HttpHeaderInfo[] Headers { get; set; }
  55. public DeviceIdentification()
  56. {
  57. Headers = new HttpHeaderInfo[] {};
  58. }
  59. }
  60. }