8 lines
178 B
C#
8 lines
178 B
C#
namespace FreeSR.Shared.Command.Context
|
|
{
|
|
public interface ICommandContext
|
|
{
|
|
void SendMessage(string message);
|
|
void SendError(string message);
|
|
}
|
|
}
|