You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
592 B
26 lines
592 B
4 years ago
|
using System;
|
||
|
|
||
|
namespace Jellyfin.Data.Queries
|
||
|
{
|
||
|
/// <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; }
|
||
|
}
|
||
|
}
|