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

7 lines
190 B
C#

namespace CloudGaming.Api.Admin.Models.Dtos.Systems;
public class SysMenuFormDto
{
public SysMenu Form { get; set; }
public List<SysMenuFunction> MenuFunctionList { get; set; }
}