DeviceQuery.cs 658 B

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