Files
RRAC/RecRoomArchive.Models/API/Players/RegistrationStatus.cs
splootybean 387ec7ba89 Initialize repository
Added basic info to get in game for like...August 2016 ;-;
It's not much but it's a start
2026-02-27 00:58:13 -08:00

21 lines
641 B
C#

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
}
}