DeviceQuery.cs 1.2 KB

123456789101112131415161718192021222324252627
  1. 
  2. namespace MediaBrowser.Model.Devices
  3. {
  4. public class DeviceQuery
  5. {
  6. /// <summary>
  7. /// Gets or sets a value indicating whether [supports content uploading].
  8. /// </summary>
  9. /// <value><c>null</c> if [supports content uploading] contains no value, <c>true</c> if [supports content uploading]; otherwise, <c>false</c>.</value>
  10. public bool? SupportsContentUploading { get; set; }
  11. /// <summary>
  12. /// Gets or sets a value indicating whether [supports unique identifier].
  13. /// </summary>
  14. /// <value><c>null</c> if [supports unique identifier] contains no value, <c>true</c> if [supports unique identifier]; otherwise, <c>false</c>.</value>
  15. public bool? SupportsUniqueIdentifier { get; set; }
  16. /// <summary>
  17. /// Gets or sets a value indicating whether [supports synchronize].
  18. /// </summary>
  19. /// <value><c>null</c> if [supports synchronize] contains no value, <c>true</c> if [supports synchronize]; otherwise, <c>false</c>.</value>
  20. public bool? SupportsSync { get; set; }
  21. /// <summary>
  22. /// Gets or sets the user identifier.
  23. /// </summary>
  24. /// <value>The user identifier.</value>
  25. public string UserId { get; set; }
  26. }
  27. }