1
0
mirror of https://github.com/chylex/Query.git synced 2025-05-17 19:34:06 +02:00
Query/Base/CommandEventArgs.cs
2024-08-01 21:35:14 +02:00

12 lines
210 B
C#

using System;
namespace Base {
public class CommandEventArgs : EventArgs {
public Command Command { get; private set; }
public CommandEventArgs(string text) {
Command = new Command(text);
}
}
}