mirror of
https://github.com/chylex/Query.git
synced 2025-04-28 00:15:42 +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;
|
|
};
|