DeviceIdentification.cs 1.9 KB

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