Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.DTOModel/Base/Dto/GiveRoleSetMenuDto.cs

15 lines
309 B
C#
Raw Normal View History

2022-04-26 01:31:14 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2023-01-02 14:29:16 +08:00
namespace Yi.Framework.DtoModel.Base.Dto
2022-04-26 01:31:14 +08:00
{
public class GiveRoleSetMenuDto
{
public List<long> RoleIds { get; set; }
public List<long> MenuIds { get; set; }
}
}