Added stub for logging in MtApi5. Implemented function SendCommand. Get quotes after connection

This commit is contained in:
Viacheslav Demydiuk
2024-01-11 22:54:56 +02:00
parent af5dd93056
commit cd7648b320
9 changed files with 266 additions and 232 deletions
+11
View File
@@ -0,0 +1,11 @@
namespace MtApi5
{
public interface IMtLogger
{
void Debug(object message);
void Error(object message);
void Fatal(object message);
void Info(object message);
void Warn(object message);
}
}