#pragma warning disable CS1591
using System;
namespace MediaBrowser.Model.Devices
{
    public class DeviceQuery
    {
        /// 
        /// Gets or sets a value indicating whether [supports synchronize].
        /// 
        /// null if [supports synchronize] contains no value, true if [supports synchronize]; otherwise, false.
        public bool? SupportsSync { get; set; }
        /// 
        /// Gets or sets the user identifier.
        /// 
        /// The user identifier.
        public Guid UserId { get; set; }
    }
}