Initialize repository

Added basic info to get in game for like...August 2016 ;-;
It's not much but it's a start
This commit is contained in:
2026-02-27 00:58:13 -08:00
parent 05c35b2a18
commit 387ec7ba89
61 changed files with 1722 additions and 0 deletions

View File

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