mirror of
https://github.com/chylex/Query.git
synced 2025-04-28 17:15:43 +02:00
12 lines
245 B
C#
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);
|
|
}
|
|
}
|
|
}
|