Sic.Framework-Nanjing-Baishi/MECF.Framework.Common/Aitex/Core/Account/LoginResult.cs

17 lines
260 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
using System;
namespace Aitex.Core.Account
{
[Serializable]
public class LoginResult
{
public bool ActSucc { get; set; }
public string SessionId { get; set; }
public Account AccountInfo { get; set; }
public string Description { get; set; }
}
}