// ***********************************************************************
// Assembly : OpenAuth.App
// Author : Yubao Li
// Created : 12-01-2015
//
// Last Modified By : Yubao Li
// Last Modified On : 12-01-2015
// ***********************************************************************
//
// Copyright (c) . All rights reserved.
//
// 用户及权限视图模型
// ***********************************************************************
using System.Collections.Generic;
using OpenAuth.Repository.Domain;
namespace OpenAuth.App.Response
{
///
/// 视图模型
/// 包括用户及用户可访问的机构/资源/模块
/// 李玉宝修改于2016-07-19 10:57:31
///
public class UserWithAccessedCtrls
{
public User User { get; set; }
///
/// 用户可以访问到的模块(包括所属角色与自己的所有模块)
///
public List Modules { get; set; }
//用户可以访问的资源
public List Resources { get; set; }
///
/// 用户所属机构
///
public List Orgs { get; set; }
public List Roles { get; set; }
}
}