1
0
mirror of https://github.com/chylex/Query.git synced 2025-04-29 20:34:06 +02:00
Query/Base/IApp.cs

9 lines
193 B
C#

namespace Base{
public interface IApp{
string[] RecognizedNames { get; }
MatchConfidence GetConfidence(Command cmd);
string ProcessCommand(Command cmd);
}
}