mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-27 18:47:55 +00:00
18 lines
331 B
C#
Executable File
18 lines
331 B
C#
Executable File
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace MtApi
|
|
{
|
|
public class MtQuoteEventArgs : EventArgs
|
|
{
|
|
public MtQuote Quote { get; private set; }
|
|
|
|
public MtQuoteEventArgs(MtQuote quote)
|
|
{
|
|
Quote = quote;
|
|
}
|
|
}
|
|
}
|