2019-01-13 20:02:23 +00:00
|
|
|
using System;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
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 Guid 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; }
|
|
|
|
}
|
2019-01-13 19:31:15 +00:00
|
|
|
}
|