Table of Contents

Class InvalidatedAuthToken

Namespace
GastroSky.Models
Assembly
GastroSky.Models.dll

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

long

Token

The full auth token string.

[Key]
public required string Token { get; set; }

Property Value

string