ProgressEventArgs.cs 448 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Y.Utils.DelegateUtils
  6. {
  7. public class ProgressEventArgs
  8. {
  9. public ProgressEventArgs()
  10. {
  11. }
  12. public ProgressEventArgs(long current, long total)
  13. {
  14. Current = current;
  15. Total = total;
  16. }
  17. public long Current { get; set; }
  18. public long Total { get; set; }
  19. }
  20. }