CompleteEventArgs.cs 454 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace HistoryDLL
  7. {
  8. public class CompleteEventArgs : EventArgs
  9. {
  10. private string filePath;
  11. public string FilePath
  12. {
  13. get { return filePath; }
  14. set { filePath = value; }
  15. }
  16. public CompleteEventArgs(string p)
  17. {
  18. FilePath = p;
  19. }
  20. }
  21. }