Files

12 lines
343 B
C#
Raw Permalink Normal View History

2026-08-12 14:04:55 +03:00
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
}