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