using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CmsQueryExtensions.Entitys
{
///
/// 当前登录用户对象
///
[Serializable]
public class MyCurrentUser
{
///
/// 用户ID
///
public string? UserId { get; set; }
///
/// 用户名
///
public string? UserAccount { get; set; }
}
}