1
0
mirror of https://github.com/chylex/Query.git synced 2025-04-28 17:15:43 +02:00
Query/AppWindows/IHandler.cs
2024-08-05 20:42:15 +02:00

9 lines
116 B
C#

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