| 123456789101112131415161718 |
- using Muchinfo.MTPClient.Data.Quote.Entities;
- using System;
- namespace Muchinfo.MTPClient.Data.Quote
- {
- public class QuoteTikResponseEventArgs : EventArgs
- {
- public QuoteTik[] Tiks
- {
- get;
- private set;
- }
- public QuoteTikResponseEventArgs(QuoteTik[] tiks)
- {
- this.Tiks = tiks;
- }
- }
- }
|