namespace RegexBot;
///
/// Specifies the type of action or event represented by a
/// or .
///
public enum ModLogType {
///
/// An unspecified logging type.
///
Other,
///
/// A note appended to a user's log for moderator reference.
///
Note,
///
/// A warning. Similar to a note, but with higher priority and presented to the user when issued.
///
Warn,
///
/// A timeout, preventing the user from speaking for some amount of time.
///
Timeout,
///
/// A forced removal from the server.
///
Kick,
///
/// A forced removal from the server, with the user additionally getting added to the ban list.
///
Ban
}