#nullable disable using System; namespace MediaBrowser.Model.Session { /// /// Class SessionUserInfo. /// public class SessionUserInfo { /// /// Gets or sets the user identifier. /// /// The user identifier. public Guid UserId { get; set; } /// /// Gets or sets the name of the user. /// /// The name of the user. public string UserName { get; set; } } }