| 12345678910111213141516171819 |
- namespace Easychart.Finance.DataClient
- {
- using System;
- public class DataProgressArgs
- {
- public int CurrentValue;
- public int MaxValue;
- public string Symbol;
- public DataProgressArgs(string Symbol, int CurrentValue, int MaxValue)
- {
- this.Symbol = Symbol;
- this.CurrentValue = CurrentValue;
- this.MaxValue = MaxValue;
- }
- }
- }
|