1
0
mirror of https://github.com/chylex/Query.git synced 2025-04-28 00:15:42 +02:00
Query/Query/Command/CommandEventArgs.cs

8 lines
142 B
C#

using System;
namespace Query.Command;
sealed class CommandEventArgs(string command) : EventArgs {
public string Command => command;
};