DeviceQuery.cs 949 B

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