using System;
namespace Jellyfin.Data.Queries
{
    /// 
    /// A query to retrieve devices.
    /// 
    public class DeviceQuery : PaginatedQuery
    {
        /// 
        /// Gets or sets the user id of the device.
        /// 
        public Guid? UserId { get; set; }
        /// 
        /// Gets or sets the device id.
        /// 
        public string? DeviceId { get; set; }
        /// 
        /// Gets or sets the access token.
        /// 
        public string? AccessToken { get; set; }
    }
}