DeviceQuery.cs 592 B

12345678910111213141516171819202122232425
  1. using System;
  2. namespace Jellyfin.Data.Queries
  3. {
  4. /// <summary>
  5. /// A query to retrieve devices.
  6. /// </summary>
  7. public class DeviceQuery : PaginatedQuery
  8. {
  9. /// <summary>
  10. /// Gets or sets the user id of the device.
  11. /// </summary>
  12. public Guid? UserId { get; set; }
  13. /// <summary>
  14. /// Gets or sets the device id.
  15. /// </summary>
  16. public string? DeviceId { get; set; }
  17. /// <summary>
  18. /// Gets or sets the access token.
  19. /// </summary>
  20. public string? AccessToken { get; set; }
  21. }
  22. }