mirror of
https://github.com/chylex/Query.git
synced 2025-04-29 11:34:06 +02:00
9 lines
146 B
C#
9 lines
146 B
C#
using Base;
|
|
|
|
namespace AppSys{
|
|
internal interface IHandler{
|
|
bool Matches(Command cmd);
|
|
string Handle(Command cmd);
|
|
}
|
|
}
|