Skip to content

TokenInfo

Namespace: Database.EntityFramework.Models

Represents a refresh token entry for a user, including expiration and token details.

public class TokenInfo

Inheritance ObjectTokenInfo

Properties

ExpiredAt

Gets or sets the expiration date and time of the refresh token.

public DateTime ExpiredAt { get; set; }

Property Value

DateTime

Id

Gets or sets the unique identifier for the token entry.

public int Id { get; set; }

Property Value

Int32

RefreshToken

Gets or sets the refresh token string.

public string RefreshToken { get; set; }

Property Value

String

Username

Gets or sets the username associated with the refresh token.

public string Username { get; set; }

Property Value

String

Constructors

TokenInfo()

public TokenInfo()