aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Users/AuthenticationResult.cs
blob: 8046e83c7f2c50f30a689d235edae6d4fbd43eb1 (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 AuthenticationToken { get; set; }
    }
}