namespace RegexBot.Common;
///
/// The type of entity specified in an .
///
public enum EntityType {
///
/// Userd when the represents a role.
///
Role,
///
/// Used when the represents a channel.
///
Channel,
///
/// Used when the represents a user.
///
User
}