feat: add CommandRegistration struct

This commit is contained in:
2026-06-02 23:22:40 +02:00
parent b60b0b98b7
commit d586878325
+19
View File
@@ -0,0 +1,19 @@
namespace CommandHook;
public struct CommandRegistration
{
public readonly string CommandFilter;
public readonly CommandHookDelegate? Before;
public readonly CommandHookDelegate? After;
public CommandRegistration(
string commandFilter,
CommandHookDelegate? before,
CommandHookDelegate? after
)
{
CommandFilter = commandFilter;
Before = before;
After = after;
}
}