2022-07-21 01:55:08 +00:00
|
|
|
|
namespace RegexBot;
|
2022-05-26 02:27:53 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Specifies possible outcomes for the removal of a user from a guild.
|
|
|
|
|
/// </summary>
|
2022-07-21 01:55:08 +00:00
|
|
|
|
// Despite specific to CommonFunctionsService, this enum is meant to be visible by modules too,
|
|
|
|
|
// thus it is placed within the root namespace.
|
|
|
|
|
// TODO Tends to be unused except internally. Look into removing.
|
2022-05-26 02:27:53 +00:00
|
|
|
|
public enum RemovalType {
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Default value. Not used in any actual circumstances.
|
|
|
|
|
/// </summary>
|
|
|
|
|
None,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Specifies that the type of removal includes placing the user on the guild's ban list.
|
|
|
|
|
/// </summary>
|
|
|
|
|
Ban,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Specifies that the user is removed from the server via kick.
|
|
|
|
|
/// </summary>
|
|
|
|
|
Kick
|
|
|
|
|
}
|