You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
513 B
20 lines
513 B
using Znyc.Cloudcar.Admin.Security.Entitys;
|
|
|
|
namespace Znyc.Cloudcar.Admin.WebApi.Common
|
|
{
|
|
/// <summary>
|
|
/// SessionObject是登录之后,给客户端传回的对象
|
|
/// </summary>
|
|
public class SessionObject
|
|
{
|
|
/// <summary>
|
|
/// SessionKey
|
|
/// </summary>
|
|
public string SessionKey { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前登录的用户的信息
|
|
/// </summary>
|
|
public AdminUserEntity LogonUser { get; set; }
|
|
}
|
|
}
|