mirror of
https://github.com/chylex/Query.git
synced 2025-05-19 16:34:06 +02:00
9 lines
171 B
C#
9 lines
171 B
C#
namespace Base {
|
|
public interface IApp {
|
|
string[] RecognizedNames { get; }
|
|
|
|
MatchConfidence GetConfidence(Command cmd);
|
|
string ProcessCommand(Command cmd);
|
|
}
|
|
}
|