Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Authentication/AuthenticationResult.cs

32 lines
690 B
C#
Raw Normal View History

#nullable disable
2018-12-27 18:27:57 -05:00
using MediaBrowser.Model.Dto;
namespace MediaBrowser.Controller.Authentication;
/// <summary>
/// A class representing an authentication result.
/// </summary>
public class AuthenticationResult
2018-12-27 18:27:57 -05:00
{
/// <summary>
/// Gets or sets the user.
/// </summary>
public UserDto User { get; set; }
2019-12-11 00:13:57 +01:00
/// <summary>
/// Gets or sets the session info.
/// </summary>
public SessionInfoDto SessionInfo { get; set; }
2019-12-11 00:13:57 +01:00
/// <summary>
/// Gets or sets the access token.
/// </summary>
public string AccessToken { get; set; }
2019-12-11 00:13:57 +01:00
/// <summary>
/// Gets or sets the server id.
/// </summary>
public string ServerId { get; set; }
2018-12-27 18:27:57 -05:00
}