31 lines
607 B
C#
31 lines
607 B
C#
// <copyright file="UserState.cs" company="alveus.dev">
|
|
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
|
|
// </copyright>
|
|
|
|
namespace Astral.Core.Constants;
|
|
|
|
/// <summary>
|
|
/// Available user states.
|
|
/// </summary>
|
|
public enum UserState
|
|
{
|
|
/// <summary>
|
|
/// Normal activated user.
|
|
/// </summary>
|
|
Normal,
|
|
|
|
/// <summary>
|
|
/// Suspended account.
|
|
/// </summary>
|
|
Suspended,
|
|
|
|
/// <summary>
|
|
/// Banned account.
|
|
/// </summary>
|
|
Banned,
|
|
|
|
/// <summary>
|
|
/// Awaiting email activation.
|
|
/// </summary>
|
|
AwaitingEmailActivation,
|
|
}
|