using System.Collections.Generic; namespace HoneyBox.Admin.Models.Role; /// /// 分配权限请求 /// public class AssignPermissionsRequest { /// /// 权限编码列表 /// public List PermissionCodes { get; set; } = new(); }