DeviceQuery.cs 627 B

123456789101112131415161718192021
  1. #pragma warning disable CS1591
  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 synchronize].
  9. /// </summary>
  10. /// <value><c>null</c> if [supports synchronize] contains no value, <c>true</c> if [supports synchronize]; otherwise, <c>false</c>.</value>
  11. public bool? SupportsSync { get; set; }
  12. /// <summary>
  13. /// Gets or sets the user identifier.
  14. /// </summary>
  15. /// <value>The user identifier.</value>
  16. public Guid UserId { get; set; }
  17. }
  18. }