mirror of
https://github.com/chylex/Query.git
synced 2025-08-16 05:31:41 +02:00
AppCalc
AppConv
AppMeme
AppWindows
Base
Utils
Base.csproj
Command.cs
CommandEventArgs.cs
CommandException.cs
IApp.cs
MatchConfidence.cs
Calculator
Query
.gitignore
Directory.Build.props
Query.sln
icon.ico
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);
|
|
}
|