12 lines
343 B
C#
12 lines
343 B
C#
|
|
namespace RudderSdk.Core;
|
||
|
|
|
||
|
|
/// <summary>Session state reported by <see cref="AuthService.AuthStateChanged"/>.</summary>
|
||
|
|
public enum RudderAuthState
|
||
|
|
{
|
||
|
|
/// <summary>A token pair is stored; API calls carry it.</summary>
|
||
|
|
SignedIn,
|
||
|
|
|
||
|
|
/// <summary>No valid session: logged out or the refresh token was rejected.</summary>
|
||
|
|
SignedOut
|
||
|
|
}
|