You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
662 B
C#
33 lines
662 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Admin.Core.Model
|
|
{
|
|
/// <summary>
|
|
/// 用户角色视图
|
|
/// </summary>
|
|
public class UserRoleView
|
|
{
|
|
/// <summary>
|
|
/// 角色ID
|
|
/// </summary>
|
|
public int RoleID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户ID集合
|
|
/// </summary>
|
|
public List<int> UserIds { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户ID
|
|
/// </summary>
|
|
public int UserID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 角色ID集合
|
|
/// </summary>
|
|
public List<int?> RoleIds { get; set; }
|
|
}
|
|
}
|