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

9 lines
146 B
C#

using Base;
namespace AppSys{
internal interface IHandler{
bool Matches(Command cmd);
string Handle(Command cmd);
}
}