mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 02:57:56 +00:00
17 lines
389 B
C#
Executable File
17 lines
389 B
C#
Executable File
using System;
|
|
|
|
namespace MtApi5
|
|
{
|
|
public class Mt5ConnectionEventArgs: EventArgs
|
|
{
|
|
public Mt5ConnectionState Status { get; }
|
|
public string ConnectionMessage { get; }
|
|
|
|
public Mt5ConnectionEventArgs(Mt5ConnectionState status, string message)
|
|
{
|
|
Status = status;
|
|
ConnectionMessage = message;
|
|
}
|
|
}
|
|
}
|