namespace RegexBot.Common; /// /// The type of entity specified in an . /// public enum EntityType { /// Default value. Is never referenced in regular usage. Unspecified, /// /// Userd when the represents a role. /// Role, /// /// Used when the represents a channel. /// Channel, /// /// Used when the represents a user. /// User }