mirror of
https://github.com/chylex/Query.git
synced 2025-08-16 05:31:41 +02:00
Calculator
Query
Apps
Command
Form
IApp.cs
Program.cs
Query.csproj
.gitignore
Directory.Build.props
Query.sln
icon.ico
8 lines
150 B
C#
8 lines
150 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace Query;
|
|
|
|
interface IApp {
|
|
bool TryRun(string command, [NotNullWhen(true)] out string? output);
|
|
}
|