Noi
1149f2800d
Moved modules into the assembly itself to simplify development of further features and reduce complexity in building this project. Additionally, many small adjustments were made, including: - Add documentation to most public methods that had it missing - Minor style updates - Updated readme to reflect near-completion of this rewrite - Remove any last remaining references to old project name Kerobot - Update dependencies
20 lines
593 B
C#
20 lines
593 B
C#
namespace RegexBot.Common;
|
|
/// <summary>
|
|
/// The type of entity specified in an <see cref="EntityName"/>.
|
|
/// </summary>
|
|
public enum EntityType {
|
|
/// <summary>Default value. Is never referenced in regular usage.</summary>
|
|
Unspecified,
|
|
/// <summary>
|
|
/// Userd when the <see cref="EntityName"/> represents a role.
|
|
/// </summary>
|
|
Role,
|
|
/// <summary>
|
|
/// Used when the <see cref="EntityName"/> represents a channel.
|
|
/// </summary>
|
|
Channel,
|
|
/// <summary>
|
|
/// Used when the <see cref="EntityName"/> represents a user.
|
|
/// </summary>
|
|
User
|
|
}
|