FileWatcherEventArgs.cs 412 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Text;
  6. namespace Y.Utils.IOUtils.FileManUtils
  7. {
  8. public class FileWatcherEventArgs
  9. {
  10. public WatcherChangeTypes ChangeType { get; }
  11. public string FullPath { get; }
  12. public string Name { get; }
  13. public string OldFullPath { get; }
  14. public string OldName { get; }
  15. }
  16. }