Moved logic related to command to MtRpcClient

This commit is contained in:
Viacheslav Demydiuk
2024-01-12 23:24:47 +02:00
parent 06082539c3
commit 4f9dc57c25
5 changed files with 165 additions and 143 deletions
+8
View File
@@ -0,0 +1,8 @@
namespace MtApi5
{
public class Mt5QuotesEventArgs(IEnumerable<Mt5Quote> quotes) : EventArgs
{
public IEnumerable<Mt5Quote> Quotes { get; } = quotes;
}
}