mirror of
https://github.com/chylex/Query.git
synced 2025-08-16 23:31:42 +02:00
AppCalc
AppConv
AppMeme
AppWindows
Base
Properties
Utils
Base.csproj
Command.cs
CommandEventArgs.cs
CommandException.cs
IApp.cs
MatchConfidence.cs
Query
.gitignore
Query.sln
icon.ico
9 lines
193 B
C#
9 lines
193 B
C#
namespace Base{
|
|
public interface IApp{
|
|
string[] RecognizedNames { get; }
|
|
|
|
MatchConfidence GetConfidence(Command cmd);
|
|
string ProcessCommand(Command cmd);
|
|
}
|
|
}
|