AuthenticationInfoQuery.cs 1.6 KB

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