blob: 998aaa3a7fe82c814bbf6358f7fdcfdcc7236453 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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; }
}
}
|