29 lines
659 B
C#
29 lines
659 B
C#
// <copyright file="DeviceQuery.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Jellyfin.Data.Queries;
|
|
|
|
using System;
|
|
|
|
/// <summary>
|
|
/// A query to retrieve devices.
|
|
/// </summary>
|
|
public class DeviceQuery : PaginatedQuery
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the user id of the device.
|
|
/// </summary>
|
|
public Guid? UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the device id.
|
|
/// </summary>
|
|
public string? DeviceId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the access token.
|
|
/// </summary>
|
|
public string? AccessToken { get; set; }
|
|
}
|