| 12345678910111213141516171819202122232425262728293031 | #nullable disableusing MediaBrowser.Model.Dto;namespace MediaBrowser.Controller.Authentication;/// <summary>/// A class representing an authentication result./// </summary>public class AuthenticationResult{    /// <summary>    /// Gets or sets the user.    /// </summary>    public UserDto User { get; set; }    /// <summary>    /// Gets or sets the session info.    /// </summary>    public SessionInfoDto SessionInfo { get; set; }    /// <summary>    /// Gets or sets the access token.    /// </summary>    public string AccessToken { get; set; }    /// <summary>    /// Gets or sets the server id.    /// </summary>    public string ServerId { get; set; }}
 |