Sic.Framework/MECF.Framework.Common/Aitex/Core/Account/LoginResult.cs

17 lines
260 B
C#

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; }
}
}