namespace IndexFormula.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; } } }