DeviceQuery.cs 594 B

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