mirror of
https://github.com/chylex/Query.git
synced 2025-06-16 22:39:57 +02:00
9 lines
116 B
C#
9 lines
116 B
C#
using Base;
|
|
|
|
namespace AppSys;
|
|
|
|
interface IHandler {
|
|
bool Matches(Command cmd);
|
|
string? Handle(Command cmd);
|
|
}
|