CloudGamingAdmin/admin-server/CloudGaming.Api.Admin/Models/Dtos/Systems/SysUserFormDto.cs
2024-11-15 02:58:48 +08:00

14 lines
369 B
C#

namespace CloudGaming.Api.Admin.Models.Dtos.Systems;
/// <summary>
/// 系统账户表单
/// </summary>
public class SysUserFormDto
{
public SysUser Form { get; set; }
public List<Guid> RoleIds { get; set; }
public List<SysRole> AllRoleList { get; set; }
public List<Guid> PostIds { get; set; }
public List<SysPost> AllPostList { get; set; }
}