AuthenticationInfoQuery.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. using System;
  4. namespace MediaBrowser.Controller.Security
  5. {
  6. public class AuthenticationInfoQuery
  7. {
  8. /// <summary>
  9. /// Gets or sets the device identifier.
  10. /// </summary>
  11. /// <value>The device identifier.</value>
  12. public string DeviceId { get; set; }
  13. /// <summary>
  14. /// Gets or sets the user identifier.
  15. /// </summary>
  16. /// <value>The user identifier.</value>
  17. public Guid UserId { get; set; }
  18. /// <summary>
  19. /// Gets or sets the access token.
  20. /// </summary>
  21. /// <value>The access token.</value>
  22. public string AccessToken { get; set; }
  23. /// <summary>
  24. /// Gets or sets a value indicating whether this instance is active.
  25. /// </summary>
  26. /// <value><c>null</c> if [is active] contains no value, <c>true</c> if [is active]; otherwise, <c>false</c>.</value>
  27. public bool? IsActive { get; set; }
  28. /// <summary>
  29. /// Gets or sets a value indicating whether this instance has user.
  30. /// </summary>
  31. /// <value><c>null</c> if [has user] contains no value, <c>true</c> if [has user]; otherwise, <c>false</c>.</value>
  32. public bool? HasUser { get; set; }
  33. /// <summary>
  34. /// Gets or sets the start index.
  35. /// </summary>
  36. /// <value>The start index.</value>
  37. public int? StartIndex { get; set; }
  38. /// <summary>
  39. /// Gets or sets the limit.
  40. /// </summary>
  41. /// <value>The limit.</value>
  42. public int? Limit { get; set; }
  43. }
  44. }