13 lines
188 B
C#
13 lines
188 B
C#
namespace Moonlight.App.Models.Misc;
|
|
|
|
public enum UserStatus
|
|
{
|
|
Unverified,
|
|
Verified,
|
|
VerifyPending,
|
|
VerifyFailed,
|
|
Warned,
|
|
Banned,
|
|
Disabled,
|
|
DataPending
|
|
} |