2
0

AuthenticationInfoQuery.cs 1.5 KB

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