namespace Galaeth.Core.Constants; /// /// Available user states. /// public enum UserState { /// /// Normal activated user. /// Normal, /// /// Suspended account. /// Suspended, /// /// Banned account. /// Banned, /// /// Awaiting email activation. /// AwaitingEmailActivation, }