ProgressEventArgs.cs 490 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace SmartCoalApplication.Core
  7. {
  8. public class ProgressEventArgs : System.EventArgs
  9. {
  10. private double percent;
  11. public double Percent
  12. {
  13. get
  14. {
  15. return percent;
  16. }
  17. }
  18. public ProgressEventArgs(double percent)
  19. {
  20. this.percent = percent;
  21. }
  22. }
  23. }