Admin.net框架
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
319 B

6 days ago
namespace Admin.NET.Core.Service;
/// <summary>
/// 授权用户角色
/// </summary>
public class UserRoleInput
{
/// <summary>
/// 用户Id
/// </summary>
public long UserId { get; set; }
/// <summary>
/// 角色Id集合
/// </summary>
public List<long> RoleIdList { get; set; }
}