mirror of
https://github.com/chylex/Query.git
synced 2025-05-17 19:34:06 +02:00
12 lines
210 B
C#
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);
|
|
}
|
|
}
|
|
}
|