DeviceIdentification.cs 1.9 KB

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