1
0
mirror of https://github.com/chylex/Query.git synced 2025-05-24 04:34:05 +02:00
Query/Base/IApp.cs
2024-08-05 20:42:15 +02:00

9 lines
164 B
C#

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