You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
690 B
32 lines
690 B
#nullable disable
|
|
|
|
using 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; }
|
|
}
|