namespace RecRoomArchive.Models.API.Players
{
///
/// The status of the players registration to Rec Room
///
public enum RegistrationStatus
{
///
/// This player has no email entered for Rec Room and may be prompted to enter one
///
Unregistered,
///
/// This player has a pending email from Rec Room that they have not accepted yet
///
PendingEmailVerification,
///
/// This player has a verified Rec Room Profile!
///
Registered
}
}