using System; using System.Collections.Generic; using System.Text; namespace Admin.Core.Model { /// /// 用户角色视图 /// public class UserRoleView { /// /// 角色ID /// public int RoleID { get; set; } /// /// 用户ID集合 /// public List UserIds { get; set; } /// /// 用户ID /// public int UserID { get; set; } /// /// 角色ID集合 /// public List RoleIds { get; set; } } }