24 lines
478 B
C#
24 lines
478 B
C#
|
|
using SamplePre.Models.Tables;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace SamplePre.Models.Ext
|
|||
|
|
{
|
|||
|
|
public class LoginUserInfo
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 用户信息
|
|||
|
|
/// </summary>
|
|||
|
|
public config_user user { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 功能权限
|
|||
|
|
/// </summary>
|
|||
|
|
public List<config_function> functions { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|