1
0
mirror of https://github.com/chylex/Query.git synced 2025-06-02 10:34:05 +02:00
Query/AppWindows/IHandler.cs
2024-08-01 21:35:14 +02:00

9 lines
121 B
C#

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