1
0
mirror of https://github.com/chylex/Query.git synced 2025-08-18 20:24:54 +02:00
Files
Query/Base/CommandEventArgs.cs
2024-07-29 16:57:33 +02:00

12 lines
245 B
C#

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