mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 11:07:48 +00:00
18 lines
335 B
C#
Executable File
18 lines
335 B
C#
Executable File
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace MtApi5
|
|
{
|
|
public class Mt5QuoteEventArgs: EventArgs
|
|
{
|
|
public Mt5Quote Quote { get; private set; }
|
|
|
|
public Mt5QuoteEventArgs(Mt5Quote quote)
|
|
{
|
|
Quote = quote;
|
|
}
|
|
}
|
|
}
|