DeviceProfile.cs 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. 
  2. namespace MediaBrowser.Controller.Dlna
  3. {
  4. public class DeviceProfile
  5. {
  6. /// <summary>
  7. /// Gets or sets the name.
  8. /// </summary>
  9. /// <value>The name.</value>
  10. public string Name { get; set; }
  11. /// <summary>
  12. /// Gets or sets the type of the client.
  13. /// </summary>
  14. /// <value>The type of the client.</value>
  15. public string ClientType { get; set; }
  16. /// <summary>
  17. /// Gets or sets the name of the friendly.
  18. /// </summary>
  19. /// <value>The name of the friendly.</value>
  20. public string FriendlyName { get; set; }
  21. /// <summary>
  22. /// Gets or sets the model number.
  23. /// </summary>
  24. /// <value>The model number.</value>
  25. public string ModelNumber { get; set; }
  26. /// <summary>
  27. /// Gets or sets the name of the model.
  28. /// </summary>
  29. /// <value>The name of the model.</value>
  30. public string ModelName { get; set; }
  31. /// <summary>
  32. /// Gets or sets the manufacturer.
  33. /// </summary>
  34. /// <value>
  35. /// The manufacturer.
  36. /// </value>
  37. public string Manufacturer { get; set; }
  38. /// <summary>
  39. /// Gets or sets the transcoding profiles.
  40. /// </summary>
  41. /// <value>The transcoding profiles.</value>
  42. public TranscodingProfile[] TranscodingProfiles { get; set; }
  43. /// <summary>
  44. /// Gets or sets the direct play profiles.
  45. /// </summary>
  46. /// <value>The direct play profiles.</value>
  47. public DirectPlayProfile[] DirectPlayProfiles { get; set; }
  48. public DeviceProfile()
  49. {
  50. DirectPlayProfiles = new DirectPlayProfile[] { };
  51. TranscodingProfiles = new TranscodingProfile[] { };
  52. }
  53. }
  54. }