16 lines
362 B
C#
Raw Permalink Normal View History

2025-06-06 14:57:20 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace YD_WeChatApplet.Commons.Users
{
/// <summary>
/// 系统用户(用于存储用户状态相关信息)
/// </summary>
public class SysUser
{
public int UserId { set; get; } // 用户Id
public string UserName { set; get; } // 用户名称
}
}