mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 08:37:28 +08:00
47 lines
1.4 KiB
C#
47 lines
1.4 KiB
C#
// ***********************************************************************
|
|
// Assembly : OpenAuth.App
|
|
// Author : Yubao Li
|
|
// Created : 12-01-2015
|
|
//
|
|
// Last Modified By : Yubao Li
|
|
// Last Modified On : 12-01-2015
|
|
// ***********************************************************************
|
|
// <copyright file="LoginUserVM.cs" company="">
|
|
// Copyright (c) . All rights reserved.
|
|
// </copyright>
|
|
// <summary>登陆视图模型</summary>
|
|
// ***********************************************************************
|
|
|
|
using System.Collections.Generic;
|
|
using OpenAuth.Domain;
|
|
|
|
namespace OpenAuth.App.ViewModel
|
|
{
|
|
/// <summary>
|
|
/// 登陆用户视图模型
|
|
/// </summary>
|
|
public class LoginUserVM
|
|
{
|
|
public string Token { get; set; }
|
|
public User User { get; set; }
|
|
/// <summary>
|
|
/// 用户可以访问到的模块(包括所属角色与自己的所有模块)
|
|
/// </summary>
|
|
public List<ModuleView> Modules { get; set; }
|
|
|
|
//用户可以访问的资源
|
|
public List<Resource> Resources { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户所属机构
|
|
/// </summary>
|
|
public List<Org> Orgs { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户可访问的机构
|
|
/// </summary>
|
|
public IEnumerable<Org> AccessedOrgs { get; set; }
|
|
}
|
|
|
|
}
|