using MediaBrowser.Model.Dto;
using MediaBrowser.Model.Session;
namespace MediaBrowser.Model.Users
{
    public class AuthenticationResult
    {
        /// 
        /// Gets or sets the user.
        /// 
        /// The user.
        public UserDto User { get; set; }
        /// 
        /// Gets or sets the session information.
        /// 
        /// The session information.
        public SessionInfoDto SessionInfo { get; set; }
        /// 
        /// Gets or sets the authentication token.
        /// 
        /// The authentication token.
        public string AccessToken { get; set; }
        /// 
        /// Gets or sets the server identifier.
        /// 
        /// The server identifier.
        public string ServerId { get; set; }
    }
}