aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Session/SessionUserInfo.cs
blob: 39b96931a50665c4931a9e6aadfd2801ea16e02f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
namespace MediaBrowser.Model.Session
{
    /// <summary>
    /// Class SessionUserInfo.
    /// </summary>
    public class SessionUserInfo
    {
        /// <summary>
        /// Gets or sets the user identifier.
        /// </summary>
        /// <value>The user identifier.</value>
        public string UserId { get; set; }
        /// <summary>
        /// Gets or sets the name of the user.
        /// </summary>
        /// <value>The name of the user.</value>
        public string UserName { get; set; }
    }
}