TapLogin-Unity/Standalone/Runtime/Internal/LoginResult.cs

17 lines
338 B
C#
Raw Normal View History

2023-11-08 10:47:35 +08:00
using System;
namespace TapTap.Login.Internal
{
internal class LoginResult
{
public bool IsCanceled { get; set; }
public bool IsFaulted { get; set; }
public Exception Exception { get; set; }
public AccessToken Token { get; set; }
public Profile Profile { get; set; }
}
}