Added basic info to get in game for like...August 2016 ;-; It's not much but it's a start
21 lines
641 B
C#
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
|
|
}
|
|
} |