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

8 lines
228 B
C#

namespace CloudGaming.Api.Admin.Models.Dtos.Systems;
public class SysRoleMenuFunctionFormDto
{
public Guid RoleId { get; set; }
public int MenuId { get; set; }
public List<Guid> MenuFunctionIdList { get; set; }
}