DataProgressArgs.cs 425 B

12345678910111213141516171819
  1. namespace IndexFormula.Finance.DataClient
  2. {
  3. using System;
  4. public class DataProgressArgs
  5. {
  6. public int CurrentValue;
  7. public int MaxValue;
  8. public string Symbol;
  9. public DataProgressArgs(string Symbol, int CurrentValue, int MaxValue)
  10. {
  11. this.Symbol = Symbol;
  12. this.CurrentValue = CurrentValue;
  13. this.MaxValue = MaxValue;
  14. }
  15. }
  16. }