QuoteTikResponseEventArgs.cs 376 B

123456789101112131415161718
  1. using Muchinfo.MTPClient.Data.Quote.Entities;
  2. using System;
  3. namespace Muchinfo.MTPClient.Data.Quote
  4. {
  5. public class QuoteTikResponseEventArgs : EventArgs
  6. {
  7. public QuoteTik[] Tiks
  8. {
  9. get;
  10. private set;
  11. }
  12. public QuoteTikResponseEventArgs(QuoteTik[] tiks)
  13. {
  14. this.Tiks = tiks;
  15. }
  16. }
  17. }