ProgressEventArgs.cs 785 B

12345678910111213141516171819202122232425262728
  1. //************************************************************************
  2. // author: yuzhengyang
  3. // date: 2018.3.27 - 2018.6.3
  4. // desc: 工具描述
  5. // Copyright (c) yuzhengyang. All rights reserved.
  6. //************************************************************************
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Linq;
  10. using System.Text;
  11. namespace Azylee.Core.DelegateUtils.ProcessDelegateUtils
  12. {
  13. public class ProgressEventArgs
  14. {
  15. public ProgressEventArgs()
  16. {
  17. }
  18. public ProgressEventArgs(long current, long total)
  19. {
  20. Current = current;
  21. Total = total;
  22. }
  23. public long Current { get; set; }
  24. public long Total { get; set; }
  25. }
  26. }