2014-10-31 09:05:52 +02:00
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|