Class PendingLinkVerification
- Namespace
- FishMMO.DiscordBot.Data
- Assembly
- FishMMO-DiscordBot.dll
Represents an in-progress account-link verification request. Stored in memory only; expires after a timeout.
public class PendingLinkVerification
- Inheritance
-
PendingLinkVerification
- Inherited Members
Properties
CharacterName
Character name the user claims to own.
public string CharacterName { get; set; }
Property Value
DiscordUserId
Discord user ID requesting the link.
public ulong DiscordUserId { get; set; }
Property Value
ExpiresAtUtc
When this verification request expires.
public DateTime ExpiresAtUtc { get; set; }
Property Value
VerificationCode
The 6-character verification code the user must type in-game.
public string VerificationCode { get; set; }