// // Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License. // namespace Astral.Core.Constants; /// /// Available user states. /// public enum UserState { /// /// Normal activated user. /// Normal, /// /// Suspended account. /// Suspended, /// /// Banned account. /// Banned, /// /// Awaiting email activation. /// AwaitingEmailActivation, }