//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace MediaBrowser.Model.Session;
#nullable disable
using global::System;
///
/// 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; }
}