DeviceQuery.cs 936 B

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