This commit is contained in:
2023-02-24 16:46:59 +02:00
parent 1cdd2644df
commit 873855937f
3 changed files with 11 additions and 7 deletions

View File

@@ -15,5 +15,13 @@ namespace PluginManager.Others
public string commandUsed { get;init; }
public string[] arguments { get;init; }
public CmdArgs(SocketCommandContext context, string cleanContent, string commandUsed, string[] arguments)
{
this.context = context;
this.cleanContent = cleanContent;
this.commandUsed = commandUsed;
this.arguments = arguments;
}
}
}