blob: 97fe2ea99eb137602ba1aa0a96480bd813d2d26a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.Session;
namespace MediaBrowser.Model.Users
{
public class AuthenticationResult
{
/// <summary>
/// Gets or sets the user.
/// </summary>
/// <value>The user.</value>
public UserDto User { get; set; }
/// <summary>
/// Gets or sets the session information.
/// </summary>
/// <value>The session information.</value>
public SessionInfoDto SessionInfo { get; set; }
/// <summary>
/// Gets or sets the authentication token.
/// </summary>
/// <value>The authentication token.</value>
public string AccessToken { get; set; }
}
}
|