aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Queries/DeviceQuery.cs
blob: 083e00548d49e8e02245fb9039f05602a46fa892 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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; }
    }
}