Class InvalidatedAuthToken
Invalidated auth tokens should be dumped into this table upon logout/exhaustion/once known to be compromised (uh oh...).
[Table("InvalidatedAuthTokens")]
public class InvalidatedAuthToken
- Inheritance
-
InvalidatedAuthToken
- Inherited Members
Properties
ExpirationUTC
When the token expires (unix-timestamp).
public required long ExpirationUTC { get; set; }
Property Value
Token
The full auth token string.
[Key]
public required string Token { get; set; }