DeviceIdentification.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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; }
  13. /// <summary>
  14. /// Gets or sets the model number.
  15. /// </summary>
  16. /// <value>The model number.</value>
  17. public string ModelNumber { get; set; }
  18. /// <summary>
  19. /// Gets or sets the serial number.
  20. /// </summary>
  21. /// <value>The serial number.</value>
  22. public string SerialNumber { get; set; }
  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; }
  28. /// <summary>
  29. /// Gets or sets the model description.
  30. /// </summary>
  31. /// <value>The model description.</value>
  32. public string ModelDescription { get; set; }
  33. /// <summary>
  34. /// Gets or sets the model URL.
  35. /// </summary>
  36. /// <value>The model URL.</value>
  37. public string ModelUrl { get; set; }
  38. /// <summary>
  39. /// Gets or sets the manufacturer.
  40. /// </summary>
  41. /// <value>The manufacturer.</value>
  42. public string Manufacturer { get; set; }
  43. /// <summary>
  44. /// Gets or sets the manufacturer URL.
  45. /// </summary>
  46. /// <value>The manufacturer URL.</value>
  47. public string ManufacturerUrl { get; set; }
  48. /// <summary>
  49. /// Gets or sets the headers.
  50. /// </summary>
  51. /// <value>The headers.</value>
  52. public HttpHeaderInfo[] Headers { get; set; }
  53. public DeviceIdentification()
  54. {
  55. Headers = Array.Empty<HttpHeaderInfo>();
  56. }
  57. }
  58. }