Files
Yi.Framework/Yi.Framework.Net6/Yi.Framework.DTOModel/GiveRoleSetMenuDto.cs
2022-04-26 01:31:14 +08:00

15 lines
300 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.DTOModel
{
public class GiveRoleSetMenuDto
{
public List<long> RoleIds { get; set; }
public List<long> MenuIds { get; set; }
}
}