#pragma warning disable CS1591 using System; namespace MediaBrowser.Controller.Security { public class AuthenticationInfoQuery { /// /// Gets or sets the device identifier. /// /// The device identifier. public string DeviceId { get; set; } /// /// Gets or sets the user identifier. /// /// The user identifier. public Guid UserId { get; set; } /// /// Gets or sets the access token. /// /// The access token. public string AccessToken { get; set; } /// /// Gets or sets a value indicating whether this instance is active. /// /// null if [is active] contains no value, true if [is active]; otherwise, false. public bool? IsActive { get; set; } /// /// Gets or sets a value indicating whether this instance has user. /// /// null if [has user] contains no value, true if [has user]; otherwise, false. public bool? HasUser { get; set; } /// /// Gets or sets the start index. /// /// The start index. public int? StartIndex { get; set; } /// /// Gets or sets the limit. /// /// The limit. public int? Limit { get; set; } } }