mirror of
https://github.com/chylex/Query.git
synced 2025-08-16 05:31:41 +02:00
8 lines
142 B
C#
8 lines
142 B
C#
using System;
|
|
|
|
namespace Query.Command;
|
|
|
|
sealed class CommandEventArgs(string command) : EventArgs {
|
|
public string Command => command;
|
|
};
|