mirror of
https://github.com/chylex/Query.git
synced 2025-04-28 09:15:41 +02:00
8 lines
161 B
C#
8 lines
161 B
C#
using System;
|
|
|
|
namespace Base;
|
|
|
|
public sealed class CommandEventArgs(string text) : EventArgs {
|
|
public Command Command { get; private set; } = new (text);
|
|
}
|